Author: rob
Date: Mon May 2 12:11:17 2011
New Revision: 27092
URL: https://svn.nixos.org/websvn/nix/?rev=27092&sc=1
Log:
wget/release.nix: pass configureFlags to all jobs
Modified:
hydra-config/gnu/trunk/wget/release.nix
Modified: hydra-config/gnu/trunk/wget/release.nix
==============================================================================
--- hydra-config/gnu/trunk/wget/release.nix Mon May 2 12:09:26 2011
(r27091)
+++ hydra-config/gnu/trunk/wget/release.nix Mon May 2 12:11:17 2011
(r27092)
@@ -28,6 +28,7 @@
};
buildInputsFrom = pkgs: with pkgs; [openssl perl];
+ configureFlags = "--with-ssl=openssl";
in
import ../gnu-jobs.nix {
name = "wget";
@@ -52,7 +53,7 @@
flex
] ++ buildInputsFrom pkgs;
- configureFlags = "--with-ssl=openssl";
+ inherit configureFlags ;
preConfigure = ''
sed -i 's|/usr/bin/env|${pkgs.coreutils}/bin/env|' tests/run-px
@@ -61,10 +62,12 @@
build = pkgs: {
buildInputs = buildInputsFrom pkgs;
+ inherit configureFlags ;
};
coverage = pkgs: {
buildInputs = buildInputsFrom pkgs;
+ inherit configureFlags ;
};
};
}
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits