mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
ecl: add threadSupport option
This commit is contained in:
parent
d65ef03677
commit
b23b7a8174
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
, gmp, mpfr, libffi, makeWrapper
|
||||
, noUnicode ? false
|
||||
, gcc
|
||||
, threadSupport ? true
|
||||
}:
|
||||
let
|
||||
s = # Generated upstream information
|
||||
|
@ -30,7 +31,7 @@ stdenv.mkDerivation {
|
|||
};
|
||||
|
||||
configureFlags = [
|
||||
"--enable-threads"
|
||||
(if threadSupport then "--enable-threads" else "--disable-threads")
|
||||
"--with-gmp-prefix=${gmp.dev}"
|
||||
"--with-libffi-prefix=${libffi.dev}"
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue