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:
Hraban Luyat 2023-09-29 12:18:13 -04:00
parent d34bc5bd3a
commit bd4ddddd9c

View File

@ -25,8 +25,8 @@
, xorgproto , xorgproto
, coreutils , coreutils
# build options # build options
, threadSupport ? stdenv.hostPlatform.isx86 , threadSupport ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin)
, x11Support ? stdenv.hostPlatform.isx86 , x11Support ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin)
, dllSupport ? true , dllSupport ? true
, withModules ? [ , withModules ? [
"pcre" "pcre"