racket: mark x86_64-darwin broken

It does not build on this platform, and will not do so any time soon.

Closes #53389
This commit is contained in:
Claes Wallin (韋嘉誠) 2019-02-01 00:23:22 +08:00
parent f94e0252f3
commit 45c0f8956d
2 changed files with 2 additions and 0 deletions

View File

@ -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
};
}

View File

@ -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
};
})