tcl-9_0,tk-9_0: 9.0.0 -> 9.0.1

Fixes darwin for tk-9_0
This commit is contained in:
Francesco Gazzetta
2024-12-24 11:30:48 +01:00
parent f33c45a113
commit 4a1f682683
3 changed files with 4 additions and 4 deletions

View File

@@ -4,13 +4,13 @@ callPackage ./generic.nix (
args
// rec {
release = "9.0";
version = "${release}.0";
version = "${release}.1";
# Note: when updating, the hash in pkgs/development/libraries/tk/9.0.nix must also be updated!
src = fetchzip {
url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
sha256 = "sha256-QaPSY6kfxyc3x+2ptzEmN2puZ0gSFSeeNjPuxsVKXYE=";
hash = "sha256-NWwCQGyaUzfTgHqpib4lLeflULWKuLE4qYxP+0EizHs=";
};
}
)

View File

@@ -11,7 +11,7 @@ callPackage ./generic.nix (
src = fetchzip {
url = "mirror://sourceforge/tcl/tk${tcl.version}-src.tar.gz";
sha256 = "sha256-jQ9kZuFx6ikQ+SpY7kSbvXJ5hjw4WB9VgRaNlQLtG0s=";
hash = "sha256-eX9HSPnNHeWkCaH0TBhmxQ3keTb4he3KY5rS1w4ubTo=";
};
patches = [

View File

@@ -87,6 +87,6 @@ tcl.mkTclDerivation {
platforms = platforms.all;
maintainers = [ ];
broken = stdenv.hostPlatform.isDarwin
&& lib.elem (lib.versions.majorMinor tcl.version) ["8.5" "9.0"];
&& lib.elem (lib.versions.majorMinor tcl.version) ["8.5"];
};
}