tcl-9_0: 9.0.3 -> 9.0.4 (#537864)

This commit is contained in:
Francesco Gazzetta
2026-07-25 20:45:38 +00:00
committed by GitHub
3 changed files with 6 additions and 3 deletions
+2 -2
View File
@@ -4,13 +4,13 @@ callPackage ./generic.nix (
args
// rec {
release = "9.0";
version = "${release}.3";
version = "${release}.4";
# 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";
hash = "sha256-qKh2QYRy+dcX3tk6DS23YfrKfiN9V8RMU1es999KBE0=";
hash = "sha256-2yfj4ddGX/QT601NKG5y30LToMBu3jomFGnNUdzRaNw=";
};
}
)
@@ -90,6 +90,9 @@ let
]
++ lib.optional stdenv.hostPlatform.is64bit "--enable-64bit";
# https://core.tcl-lang.org/thread/tktview/30e201c7111a438e2fe6aadc9d733b954874cbb9
env = lib.optionalAttrs (lib.versionAtLeast version "9.0") { ZIPFS_BUILD = 0; };
buildFlags = lib.optionals stdenv.hostPlatform.isStatic [
# Don't use the default Make target for static,
# since it builds shared libraries for bundled packages.
+1 -1
View File
@@ -11,7 +11,7 @@ callPackage ./generic.nix (
src = fetchzip {
url = "mirror://sourceforge/tcl/tk${tcl.version}-src.tar.gz";
hash = "sha256-ssgvJdgXCtBPfnPvX9AR9uo4zGbzRGsCjOowxe5cfjM=";
hash = "sha256-G0V6SWe2PF/EEg2qI41c0AAVMYLcCdJtnKlkRxbs5HQ=";
};
patches = [