mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
svn path=/nixpkgs/trunk/; revision=11899
This commit is contained in:
parent
610bf2a24f
commit
94672236c6
|
@ -33,16 +33,20 @@ stdenv.mkDerivation {
|
|||
;
|
||||
|
||||
preConfigure =
|
||||
(lib.concatMapStrings (script: ''sed -e '/bin_SCRIPTS/a${script} \\' -i scripts/Makefile.am
|
||||
'') enableScripts)
|
||||
+ preConfigure
|
||||
+ "\n./bootstrap.sh"
|
||||
;
|
||||
(lib.concatMapStrings (script:
|
||||
''
|
||||
sed -e '/bin_SCRIPTS/a${script} \\' -i scripts/Makefile.am
|
||||
''
|
||||
) enableScripts)
|
||||
+ preConfigure
|
||||
+ "\n./bootstrap.sh";
|
||||
|
||||
configureFlags = ["
|
||||
configureFlags = ''
|
||||
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
||||
--with-aterm=${aterm} --with-bdb=${db4} --with-bzip2=${bzip2}
|
||||
--disable-init-state"] ++ configureFlags ;
|
||||
--disable-init-state
|
||||
${configureFlags}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "The Nix Deployment System";
|
||||
|
|
Loading…
Reference in a new issue