nixpkgs/pkgs/development/interpreters/racket/minimal.nix

20 lines
598 B
Nix
Raw Normal View History

{ racket
}:
racket.overrideAttrs (oldAttrs: rec {
name = "racket-minimal-${oldAttrs.version}";
src = oldAttrs.src.override {
inherit name;
2018-10-27 09:48:04 +00:00
sha256 = "11vcqxdgyarv89ijd46wzrdl2wk7xjirg7ynlz7r0smdcqrcl711";
};
2018-02-10 05:30:51 +00:00
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" ];
};
})