summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/racket/minimal.nix
blob: 6f9549dc426b41e7840d7e9908d9bca0b263a415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ racket
}:

racket.overrideAttrs (oldAttrs: rec {
  name = "racket-minimal-${oldAttrs.version}";
  src = oldAttrs.src.override {
    inherit name;
    sha256 = "0c565jy2y3gjl5lncd5adjsrj8c24p4i062kphv26ni5q1nn5ip5";
  };

  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.
  '';

})