2018-02-05 15:04:52 +00:00
|
|
|
{ racket
|
|
|
|
}:
|
|
|
|
|
|
|
|
racket.overrideAttrs (oldAttrs: rec {
|
|
|
|
name = "racket-minimal-${oldAttrs.version}";
|
|
|
|
src = oldAttrs.src.override {
|
|
|
|
inherit name;
|
2020-11-03 04:20:00 +00:00
|
|
|
sha256 = "0xvnd7afx058sg7j51bmbikqgn4sl0246nkhr8zlqcrbr3nqi6p4";
|
2018-02-05 15:04:52 +00:00
|
|
|
};
|
2018-02-10 05:30:51 +00:00
|
|
|
|
2018-02-16 04:25:34 +00:00
|
|
|
meta = oldAttrs.meta // {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Racket without bundled packages, such as Dr. Racket";
|
2018-02-16 04:25:34 +00:00
|
|
|
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.
|
|
|
|
'';
|
2018-02-05 06:28:17 +00:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
|
2019-01-31 16:23:22 +00:00
|
|
|
broken = false; # Minimal build does not require working FFI
|
2018-02-16 04:25:34 +00:00
|
|
|
};
|
2018-02-05 15:04:52 +00:00
|
|
|
})
|