mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
boehm-gc: Support --enable-large-config
This commit is contained in:
parent
0ce741f571
commit
8e2e4216ba
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl, enableLargeConfig ? false }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "boehm-gc-7.2f";
|
||||
@ -8,7 +8,9 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "119x7p1cqw40mpwj80xfq879l9m1dkc7vbc1f3bz3kvkf8bf6p16";
|
||||
};
|
||||
|
||||
configureFlags = "--enable-cplusplus";
|
||||
configureFlags =
|
||||
[ "--enable-cplusplus" ]
|
||||
++ lib.optional enableLargeConfig "--enable-large-config";
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user