nixpkgs/pkgs/development/interpreters/tcl/8.6.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
386 B
Nix
Raw Normal View History

2015-04-27 05:15:25 +01:00
{ callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
release = "8.6";
2023-03-31 08:00:38 +01:00
version = "${release}.13";
2015-04-27 05:15:25 +01:00
# Note: when updating, the hash in pkgs/development/libraries/tk/8.6.nix must also be updated!
2015-04-27 05:15:25 +01:00
src = fetchurl {
url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
2023-03-31 08:00:38 +01:00
sha256 = "sha256-Q6H650EvYf8R3iz9BdKM/Dpzdi81SkF8YjcKVOLK8GY=";
2015-04-27 05:15:25 +01:00
};
})