Merge pull request #125307 from wizeman/u/fix-tk-hash

tk-8_6: fix hash after tcl-8_6 update

authored by davidak and committed by GitHub a05b1540 78802056

+5 -1
+2
pkgs/development/interpreters/tcl/8.5.nix
··· 4 4 release = "8.5"; 5 5 version = "${release}.18"; 6 6 7 + # Note: when updating, the hash in pkgs/development/libraries/tk/8.5.nix must also be updated! 8 + 7 9 src = fetchurl { 8 10 url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz"; 9 11 sha256 = "1jfkqp2fr0xh6xvaqx134hkfa5kh7agaqbxm6lhjbpvvc1xfaaq3";
+2
pkgs/development/interpreters/tcl/8.6.nix
··· 4 4 release = "8.6"; 5 5 version = "${release}.11"; 6 6 7 + # Note: when updating, the hash in pkgs/development/libraries/tk/8.6.nix must also be updated! 8 + 7 9 src = fetchurl { 8 10 url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz"; 9 11 sha256 = "0n4211j80mxr6ql0xx52rig8r885rcbminfpjdb2qrw6hmk8c14c";
+1 -1
pkgs/development/libraries/tk/8.6.nix
··· 4 4 5 5 src = fetchurl { 6 6 url = "mirror://sourceforge/tcl/tk${tcl.version}.1-src.tar.gz"; # TODO: remove '.1' for v8.6.10 or v8.7.x 7 - sha256 = "1d7bfkxpacy33w5nahf73lkwxqpff44w1jplg7i2gmwgiaawvjwg"; 7 + sha256 = "1gh9k7l76qg9l0sb78ijw9xz4xl1af47aqbdifb6mjpf3cbsnv00"; 8 8 }; 9 9 10 10 patches = [ ./different-prefix-with-tcl.patch ] ++ lib.optionals stdenv.isDarwin [ ./Fix-bad-install_name-for-libtk8.6.dylib.patch ];