d9bf02324a
tcl-8_6 was updated in 4fb92ae60d
from
8.6.9 -> 8.6.11 but tk's hash wasn't updated at the same time,
which means the current hash was still from tk 8.6.9 rather than 8.6.11.
13 lines
387 B
Nix
13 lines
387 B
Nix
{ callPackage, fetchurl, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
release = "8.5";
|
|
version = "${release}.18";
|
|
|
|
# Note: when updating, the hash in pkgs/development/libraries/tk/8.5.nix must also be updated!
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
|
|
sha256 = "1jfkqp2fr0xh6xvaqx134hkfa5kh7agaqbxm6lhjbpvvc1xfaaq3";
|
|
};
|
|
})
|