Merge branch 'master' into staging
Makes the build more useful: - Disabled hybrid iso, makes installer tests pass again - Imagemagick fixes to the "Illegal instruction" thing
This commit is contained in:
@@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
|
||||
${if withGUI then "make DESTDIR=$out install-gui" else ""}
|
||||
mv $out/usr/* $out
|
||||
rmdir $out/usr
|
||||
mv $out/sbin $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "syslog-ng-incubator-${version}";
|
||||
version = "0.3.3";
|
||||
version = "141106-54179c5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "balabit";
|
||||
repo = "syslog-ng-incubator";
|
||||
rev = name;
|
||||
sha256 = "0pswajcw9f651c1jmprbf1mlr6qadiaplyygz5j16vj0d23x4mal";
|
||||
rev = "54179c5f733487fe97ee856bc27130d0b09f3d5a";
|
||||
sha256 = "1y099f7pdan1441ycycd67igcwbla2m2cgnxjfvdw76llvi35sam";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
configureFlags = [
|
||||
"--without-ivykis"
|
||||
"--with-riemann"
|
||||
"--with-module-dir=$(out)/lib/syslog-ng"
|
||||
];
|
||||
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
{ stdenv, fetchurl, eventlog, pkgconfig, glib, python, systemd, perl }:
|
||||
{ stdenv, fetchurl, eventlog, pkgconfig, glib, python, systemd, perl
|
||||
, riemann_c_client, protobufc, yacc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "syslog-ng-${version}";
|
||||
|
||||
version = "3.5.6";
|
||||
version = "3.6.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.balabit.com/downloads/files?path=/syslog-ng/sources/${version}/source/syslog-ng_${version}.tar.gz";
|
||||
sha256 = "19i1idklpgn6mz0mg7194by5fjgvvh5n4v2a0rr1z0778l2038kc";
|
||||
sha256 = "1s3lsxk2pky3jkfamkw5ivpxq2kazikcvdgpmxiyn5w10dwkd0m7";
|
||||
};
|
||||
|
||||
buildInputs = [ eventlog pkgconfig glib python systemd perl ];
|
||||
buildInputs = [ eventlog pkgconfig glib python systemd perl riemann_c_client protobufc yacc ];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-dynamic-linking"
|
||||
|
||||
Reference in New Issue
Block a user