racket,racket-minimal: 8.11.1 -> 8.12

Changelog: https://blog.racket-lang.org/2024/02/racket-v8-12.html
This commit is contained in:
Mario Rodas 2024-02-10 04:20:00 +00:00
parent d934204a0f
commit e5667c4a09
2 changed files with 3 additions and 7 deletions

View File

@ -50,7 +50,7 @@ in
stdenv.mkDerivation rec {
pname = "racket";
version = "8.11.1"; # always change at once with ./minimal.nix
version = "8.12"; # always change at once with ./minimal.nix
src = (lib.makeOverridable ({ name, hash }:
fetchurl {
@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
}
)) {
name = "${pname}-${version}";
hash = "sha256-5ZqwMLkqeONYnsQFxdJfpRdojCCZAjO9aMs0Vo1lTAU=";
hash = "sha256-or26nirm5dGhg2S8to99BFOOSS2Oksn7Yb0y2L5b69c=";
};
FONTCONFIG_FILE = fontsConf;
@ -98,10 +98,6 @@ stdenv.mkDerivation rec {
--replace /bin/true ${coreutils}/bin/true
done
# Remove QuickScript register.rkt because it breaks on sandbox
# https://github.com/Metaxal/quickscript/issues/73
rm -f share/pkgs/quickscript/register.rkt
# The configure script forces using `libtool -o` as AR on Darwin. But, the
# `-o` option is only available from Apple libtool. GNU ar works here.
substituteInPlace src/ChezScheme/zlib/configure \

View File

@ -6,7 +6,7 @@ racket.overrideAttrs (oldAttrs: rec {
version = oldAttrs.version;
src = oldAttrs.src.override {
name = "${pname}-${version}";
hash = "sha256-H1X9bhQw9yOaESbK4+tveFWVb4EyMNGLKukwKAo588w=";
hash = "sha256-ZbE5I2dnPY0GamerTFPFWz53+V1Xxhtx3AVp2KpF7vw=";
};
meta = oldAttrs.meta // {