···50505151stdenv.mkDerivation rec {
5252 pname = "racket";
5353- version = "8.10"; # always change at once with ./minimal.nix
5353+ version = "8.11"; # always change at once with ./minimal.nix
54545555 src = (lib.makeOverridable ({ name, sha256 }:
5656 fetchurl {
···5959 }
6060 )) {
6161 name = "${pname}-${version}";
6262- sha256 = "sha256-Dklj2iwX5/bVdCi9odz2Ttp0N+Lya7bMSLR/QXo9k6M=";
6262+ sha256 = "sha256-lIrXmTyTnk7n54zOvl7qN8CkbiKgYj66k3fgEolk93w=";
6363 };
64646565 FONTCONFIG_FILE = fontsConf;
···9797 --replace /bin/rm ${coreutils}/bin/rm \
9898 --replace /bin/true ${coreutils}/bin/true
9999 done
100100+101101+ # Remove QuickScript register.rkt because it breaks on sandbox
102102+ # https://github.com/Metaxal/quickscript/issues/73
103103+ rm -f share/pkgs/quickscript/register.rkt
100104101105 # The configure script forces using `libtool -o` as AR on Darwin. But, the
102106 # `-o` option is only available from Apple libtool. GNU ar works here.
+1-2
pkgs/development/interpreters/racket/minimal.nix
···66 version = oldAttrs.version;
77 src = oldAttrs.src.override {
88 name = "${pname}-${version}";
99- sha256 = "sha256-k1NzmkiYgPkP42U+08Ljjb3FEU7OM3lEaXsLH29hveA=";
99+ sha256 = "sha256-IsWWpZi5JXZV2AlLTjFtFj7nu15jWw4Htzgs2Wew54U=";
1010 };
11111212 meta = oldAttrs.meta // {
···1616 and the pkg library are still bundled.
1717 '';
1818 platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
1919- broken = false; # Minimal build does not require working FFI
2019 };
2120})