{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / development / interpreters / racket / minimal.nix
blob3314f6d02a64bcf323e562685373cd3e6912ac4b
1 { racket }:
3 racket.overrideAttrs (oldAttrs: rec {
4   pname = "racket-minimal";
5   version = oldAttrs.version;
6   src = oldAttrs.src.override {
7     name = "${pname}-${version}";
8     hash = "sha256-/BhnyIw4QQ2aMKW8FDJlsalSW3pTLqP74CXJ15td5so=";
9   };
11   meta = oldAttrs.meta // {
12     description = "Racket without bundled packages, such as Dr. Racket";
13     longDescription = ''
14       The essential package racket-libs is included,
15             as well as libraries that live in collections. In particular, raco
16             and the pkg library are still bundled.
17     '';
18     platforms = [
19       "x86_64-linux"
20       "aarch64-linux"
21       "x86_64-darwin"
22       "aarch64-darwin"
23     ];
24   };