Merge pull request #55005 from clacke/racket-full-no-darwin

racket: remove x86_64-darwin from platforms
This commit is contained in:
Alyssa Ross 2019-02-01 16:37:30 +00:00 committed by GitHub
commit 4e270f979c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
};
})