mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
afcf6d212b
Release Announcement: https://download.racket-lang.org/v7.5.html
21 lines
663 B
Nix
21 lines
663 B
Nix
{ racket
|
|
}:
|
|
|
|
racket.overrideAttrs (oldAttrs: rec {
|
|
name = "racket-minimal-${oldAttrs.version}";
|
|
src = oldAttrs.src.override {
|
|
inherit name;
|
|
sha256 = "0478f0phkjch10ncsl8lm8a1m8qvgchrkgzpcaxyhmg2clyjgn8r";
|
|
};
|
|
|
|
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" ];
|
|
broken = false; # Minimal build does not require working FFI
|
|
};
|
|
})
|