nixpkgs/pkgs/development/interpreters/racket/minimal.nix
Alyssa Ross 4e270f979c
Merge pull request #55005 from clacke/racket-full-no-darwin
racket: remove x86_64-darwin from platforms
2019-02-01 16:37:30 +00:00

21 lines
663 B
Nix

{ racket
}:
racket.overrideAttrs (oldAttrs: rec {
name = "racket-minimal-${oldAttrs.version}";
src = oldAttrs.src.override {
inherit name;
sha256 = "01wsiyqfiiwn2n4xxk8d8di92l2ng7yhc4bfmgrvkgaqzy3zfhhx";
};
meta = oldAttrs.meta // {
description = "Racket without bundled packages, such as Dr. Racket.";
longDescription = ''The essential package racket-libs is included,
as well as libraries that live in collections. In particular, raco
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
};
})