mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
clisp: disable unsupported modules on x86_64-darwin
Modules enabled only on "x86_64" systems were actually implicitly linux-only. Disable them entirely on Darwin, regardless of architecture. Fixes #258050
This commit is contained in:
parent
d34bc5bd3a
commit
bd4ddddd9c
@ -25,8 +25,8 @@
|
||||
, xorgproto
|
||||
, coreutils
|
||||
# build options
|
||||
, threadSupport ? stdenv.hostPlatform.isx86
|
||||
, x11Support ? stdenv.hostPlatform.isx86
|
||||
, threadSupport ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin)
|
||||
, x11Support ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin)
|
||||
, dllSupport ? true
|
||||
, withModules ? [
|
||||
"pcre"
|
||||
|
Loading…
Reference in New Issue
Block a user