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.
14 lines
387 B
Nix
14 lines
387 B
Nix
{ callPackage, fetchurl, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
release = "8.6";
|
|
version = "${release}.11";
|
|
|
|
# Note: when updating, the hash in pkgs/development/libraries/tk/8.6.nix must also be updated!
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
|
|
sha256 = "0n4211j80mxr6ql0xx52rig8r885rcbminfpjdb2qrw6hmk8c14c";
|
|
};
|
|
})
|