mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
11 lines
225 B
Nix
11 lines
225 B
Nix
|
{ racket
|
||
|
}:
|
||
|
|
||
|
racket.overrideAttrs (oldAttrs: rec {
|
||
|
name = "racket-minimal-${oldAttrs.version}";
|
||
|
src = oldAttrs.src.override {
|
||
|
inherit name;
|
||
|
sha256 = "0c565jy2y3gjl5lncd5adjsrj8c24p4i062kphv26ni5q1nn5ip5";
|
||
|
};
|
||
|
})
|