python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / interpreters / racket / minimal.nix
blob4796a2591064b54f14bb5fea498b69a78d28175d
1 { racket
2 }:
4 racket.overrideAttrs (oldAttrs: rec {
5   pname = "racket-minimal";
6   version = oldAttrs.version;
7   src = oldAttrs.src.override {
8     name = "${pname}-${version}";
9     sha256 = "sha256-AdUJ1f/YKSD/S7Qd6EwH7MavkSKVNxatQ9hKp7OTn0g=";
10   };
12   meta = oldAttrs.meta // {
13     description = "Racket without bundled packages, such as Dr. Racket";
14     longDescription = ''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 = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
19     broken = false; # Minimal build does not require working FFI
20   };