lol

Merge pull request #267566 from marsam/update-racket

racket: 8.10 -> 8.11

authored by

Mario Rodas and committed by
GitHub
f51bb2a9 3808ba76

+7 -4
+6 -2
pkgs/development/interpreters/racket/default.nix
··· 50 50 51 51 stdenv.mkDerivation rec { 52 52 pname = "racket"; 53 - version = "8.10"; # always change at once with ./minimal.nix 53 + version = "8.11"; # always change at once with ./minimal.nix 54 54 55 55 src = (lib.makeOverridable ({ name, sha256 }: 56 56 fetchurl { ··· 59 59 } 60 60 )) { 61 61 name = "${pname}-${version}"; 62 - sha256 = "sha256-Dklj2iwX5/bVdCi9odz2Ttp0N+Lya7bMSLR/QXo9k6M="; 62 + sha256 = "sha256-lIrXmTyTnk7n54zOvl7qN8CkbiKgYj66k3fgEolk93w="; 63 63 }; 64 64 65 65 FONTCONFIG_FILE = fontsConf; ··· 97 97 --replace /bin/rm ${coreutils}/bin/rm \ 98 98 --replace /bin/true ${coreutils}/bin/true 99 99 done 100 + 101 + # Remove QuickScript register.rkt because it breaks on sandbox 102 + # https://github.com/Metaxal/quickscript/issues/73 103 + rm -f share/pkgs/quickscript/register.rkt 100 104 101 105 # The configure script forces using `libtool -o` as AR on Darwin. But, the 102 106 # `-o` option is only available from Apple libtool. GNU ar works here.
+1 -2
pkgs/development/interpreters/racket/minimal.nix
··· 6 6 version = oldAttrs.version; 7 7 src = oldAttrs.src.override { 8 8 name = "${pname}-${version}"; 9 - sha256 = "sha256-k1NzmkiYgPkP42U+08Ljjb3FEU7OM3lEaXsLH29hveA="; 9 + sha256 = "sha256-IsWWpZi5JXZV2AlLTjFtFj7nu15jWw4Htzgs2Wew54U="; 10 10 }; 11 11 12 12 meta = oldAttrs.meta // { ··· 16 16 and the pkg library are still bundled. 17 17 ''; 18 18 platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 19 - broken = false; # Minimal build does not require working FFI 20 19 }; 21 20 })