Merge staging into master
Brings in:
- changed output order for multiple outputs:
https://github.com/NixOS/nixpkgs/pull/14766
- audit disabled by default
https://github.com/NixOS/nixpkgs/pull/17916
Conflicts:
pkgs/development/libraries/openldap/default.nix
This commit is contained in:
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
"--with-zlib=${zlib.dev}"
|
||||
"--with-libbz2-prefix=${bzip2.dev}"
|
||||
"--with-iconv-dir=${libiconv}"
|
||||
"--with-xml=${libxml2}"
|
||||
"--with-xml=${libxml2.dev}"
|
||||
"--with-openssl=${openssl.dev}"
|
||||
"--with-libncurses-prefix=${ncurses.dev}"
|
||||
"--with-libcurl=${curl.dev}"
|
||||
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
"--with-pcre=${pcre.dev}"
|
||||
"--with-apr=${apr.dev}"
|
||||
"--with-apu=${aprutil.dev}/bin/apu-1-config"
|
||||
"--with-libxml=${libxml2}"
|
||||
"--with-libxml=${libxml2.dev}"
|
||||
];
|
||||
|
||||
outputs = ["out" "nginx"];
|
||||
|
||||
@@ -22,8 +22,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
# configure cannot find moc on its own
|
||||
preConfigure = ''
|
||||
export QTDIR="${qtbase}"
|
||||
export MOC="${qtbase}/bin/moc"
|
||||
export QTDIR="${qtbase.dev}"
|
||||
export MOC="${qtbase.dev}/bin/moc"
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postUnpack = ''mkdir -vp $sourceRoot/m4'';
|
||||
|
||||
outputs = [ "dev" "out" "bin" ];
|
||||
outputs = [ "bin" "dev" "out" ];
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ openssl ]
|
||||
++ optionals stdenv.isLinux [ libcap libpcap libnfnetlink libnetfilter_conntrack libnetfilter_queue ];
|
||||
|
||||
Reference in New Issue
Block a user