2024-05-19 08:48:42 +00:00
|
|
|
{ racket }:
|
2018-02-05 15:04:52 +00:00
|
|
|
|
|
|
|
racket.overrideAttrs (oldAttrs: rec {
|
2022-03-01 10:39:32 +00:00
|
|
|
pname = "racket-minimal";
|
|
|
|
version = oldAttrs.version;
|
2018-02-05 15:04:52 +00:00
|
|
|
src = oldAttrs.src.override {
|
2022-03-01 10:39:32 +00:00
|
|
|
name = "${pname}-${version}";
|
2024-08-22 18:59:21 +00:00
|
|
|
hash = "sha256-/BhnyIw4QQ2aMKW8FDJlsalSW3pTLqP74CXJ15td5so=";
|
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 05:55:05 +00:00
|
|
|
description = "Racket without bundled packages, such as Dr. Racket";
|
2024-05-19 08:48:42 +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-16 04:25:34 +00:00
|
|
|
'';
|
2024-05-19 08:48:42 +00:00
|
|
|
platforms = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-darwin"
|
|
|
|
"aarch64-darwin"
|
|
|
|
];
|
2018-02-16 04:25:34 +00:00
|
|
|
};
|
2018-02-05 15:04:52 +00:00
|
|
|
})
|