summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/racket
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/interpreters/racket')
-rw-r--r--pkgs/development/interpreters/racket/default.nix9
-rw-r--r--pkgs/development/interpreters/racket/minimal.nix2
2 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix
index 4a980ec418f0..e3aa3e8a6f5c 100644
--- a/pkgs/development/interpreters/racket/default.nix
+++ b/pkgs/development/interpreters/racket/default.nix
@@ -4,6 +4,7 @@
, libpng, libtool, mpfr, openssl, pango, poppler
, readline, sqlite
, disableDocs ? false
+, CoreFoundation
}:
let
@@ -47,9 +48,13 @@ stdenv.mkDerivation rec {
FONTCONFIG_FILE = fontsConf;
LD_LIBRARY_PATH = libPath;
- NIX_LDFLAGS = stdenv.lib.optionalString stdenv.cc.isGNU "-lgcc_s";
+ NIX_LDFLAGS = stdenv.lib.concatStringsSep " " [
+ (stdenv.lib.optionalString (stdenv.cc.isGNU && ! stdenv.isDarwin) "-lgcc_s")
+ (stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation")
+ ];
- buildInputs = [ fontconfig libffi libtool makeWrapper sqlite ];
+ buildInputs = [ fontconfig libffi libtool makeWrapper sqlite ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation ];
preConfigure = ''
unset AR
diff --git a/pkgs/development/interpreters/racket/minimal.nix b/pkgs/development/interpreters/racket/minimal.nix
index 6bac9a0f3414..c63d0040cfee 100644
--- a/pkgs/development/interpreters/racket/minimal.nix
+++ b/pkgs/development/interpreters/racket/minimal.nix
@@ -14,6 +14,6 @@ racket.overrideAttrs (oldAttrs: rec {
as well as libraries that live in collections. In particular, raco
and the pkg library are still bundled.
'';
- platforms = [ "x86_64-linux" "aarch64-linux" ];
+ platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
};
})