Skip to content

Commit

Permalink
tcl-9_0,tk-9_0: 9.0.0 -> 9.0.1
Browse files Browse the repository at this point in the history
Fixes darwin for tk-9_0
  • Loading branch information
fgaz committed Jan 5, 2025
1 parent f33c45a commit 4a1f682
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/tcl/9.0.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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=";
};
}
)
2 changes: 1 addition & 1 deletion pkgs/development/libraries/tk/9.0.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/tk/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
};
}

0 comments on commit 4a1f682

Please sign in to comment.