summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2019-02-01 16:37:30 +0000
committerGitHub <noreply@github.com>2019-02-01 16:37:30 +0000
commit4e270f979ca39306cc5b5d23a0f28fad0ce69477 (patch)
treef818c4c3c72549aa88af7489c4d6515aedfc5f50
parent9f6b441aecfc9a359244c7bb594017712a1e0532 (diff)
parent45c0f8956de132d9d5d7d03cb6d31ee3ef7d91cb (diff)
downloadnixpkgs-4e270f979ca39306cc5b5d23a0f28fad0ce69477.tar
nixpkgs-4e270f979ca39306cc5b5d23a0f28fad0ce69477.tar.gz
nixpkgs-4e270f979ca39306cc5b5d23a0f28fad0ce69477.tar.bz2
nixpkgs-4e270f979ca39306cc5b5d23a0f28fad0ce69477.tar.lz
nixpkgs-4e270f979ca39306cc5b5d23a0f28fad0ce69477.tar.xz
nixpkgs-4e270f979ca39306cc5b5d23a0f28fad0ce69477.tar.zst
nixpkgs-4e270f979ca39306cc5b5d23a0f28fad0ce69477.zip
Merge pull request #55005 from clacke/racket-full-no-darwin
racket: remove x86_64-darwin from platforms
-rw-r--r--pkgs/development/interpreters/racket/default.nix1
-rw-r--r--pkgs/development/interpreters/racket/minimal.nix1
2 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix
index b834de7356f..8ba08b23c25 100644
--- a/pkgs/development/interpreters/racket/default.nix
+++ b/pkgs/development/interpreters/racket/default.nix
@@ -101,5 +101,6 @@ stdenv.mkDerivation rec {
     license = licenses.lgpl3;
     maintainers = with maintainers; [ kkallio henrytill vrthra ];
     platforms = [ "x86_64-darwin" "x86_64-linux" ];
+    broken = stdenv.isDarwin; # No support yet for setting FFI lookup path
   };
 }
diff --git a/pkgs/development/interpreters/racket/minimal.nix b/pkgs/development/interpreters/racket/minimal.nix
index c7e2056b7ca..0710c4e2d2a 100644
--- a/pkgs/development/interpreters/racket/minimal.nix
+++ b/pkgs/development/interpreters/racket/minimal.nix
@@ -15,5 +15,6 @@ racket.overrideAttrs (oldAttrs: rec {
       and the pkg library are still bundled.
     '';
     platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
+    broken = false; # Minimal build does not require working FFI
   };
 })