mirror of
https://github.com/NixOS/nix
synced 2025-07-07 18:31:49 +02:00
* Use pkgconfig to locate the Boehm GC (as suggested by Ludo), if
--enable-gc is given.
This commit is contained in:
parent
14fbf85380
commit
3d71c8013e
2 changed files with 10 additions and 10 deletions
|
@ -19,7 +19,7 @@ let
|
|||
|
||||
buildInputs =
|
||||
[ curl bison24 flex2535 perl libxml2 libxslt w3m bzip2
|
||||
tetex dblatex nukeReferences
|
||||
tetex dblatex nukeReferences pkgconfig
|
||||
];
|
||||
|
||||
configureFlags = ''
|
||||
|
@ -67,12 +67,12 @@ let
|
|||
name = "nix";
|
||||
src = tarball;
|
||||
|
||||
buildInputs = [ curl perl bzip2 openssl ];
|
||||
buildInputs = [ curl perl bzip2 openssl pkgconfig boehmgc ];
|
||||
|
||||
configureFlags = ''
|
||||
--disable-init-state
|
||||
--with-bzip2=${bzip2}
|
||||
--with-boehm-gc=${boehmgc}
|
||||
--enable-gc
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue