Pass BoehmGC to Nix
svn path=/nixpkgs/trunk/; revision=24540
This commit is contained in:
parent
e08d173663
commit
9af1c42473
|
@ -10,6 +10,7 @@
|
|||
, libxml2 ? null
|
||||
, docbook5_xsl ? null, libxslt ? null
|
||||
, docbook5 ? null, docbook_xml_dtd_43 ? null
|
||||
, boehmgc ? null
|
||||
, configureFlags ? []
|
||||
, lib
|
||||
, enableScripts ? []
|
||||
|
@ -32,6 +33,7 @@ stdenv.mkDerivation {
|
|||
++ (if docbook_xml_dtd_43 != null then [docbook_xml_dtd_43] else [])
|
||||
++ (if w3m != null then [w3m] else [])
|
||||
++ (if libxml2 != null then [libxml2] else [])
|
||||
++ (if boehmgc != null then [boehmgc] else [])
|
||||
;
|
||||
|
||||
preConfigure =
|
||||
|
|
|
@ -7022,7 +7022,7 @@ let
|
|||
nixCustomFun = src: preConfigure: enableScripts: configureFlags:
|
||||
import ../tools/package-management/nix/custom.nix {
|
||||
inherit fetchurl stdenv perl curl bzip2 openssl src preConfigure automake
|
||||
autoconf libtool configureFlags enableScripts lib bison libxml2;
|
||||
autoconf libtool configureFlags enableScripts lib bison libxml2 boehmgc;
|
||||
flex = flex2533;
|
||||
aterm = aterm25;
|
||||
db4 = db45;
|
||||
|
|
Loading…
Reference in New Issue