Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
25 lines
685 B
Nix
25 lines
685 B
Nix
{ racket }:
|
|
|
|
racket.overrideAttrs (oldAttrs: rec {
|
|
pname = "racket-minimal";
|
|
version = oldAttrs.version;
|
|
src = oldAttrs.src.override {
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-/BhnyIw4QQ2aMKW8FDJlsalSW3pTLqP74CXJ15td5so=";
|
|
};
|
|
|
|
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"
|
|
"aarch64-darwin"
|
|
];
|
|
};
|
|
})
|