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

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

14 lines
387 B
Nix
Raw Normal View History

2015-04-27 04:15:25 +00:00
{ callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
release = "8.5";
2023-03-14 09:20:23 +00:00
version = "${release}.19";
2015-04-27 04:15:25 +00:00
# Note: when updating, the hash in pkgs/development/libraries/tk/8.5.nix must also be updated!
2015-04-27 04:15:25 +00:00
src = fetchurl {
url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
2023-03-14 09:20:23 +00:00
sha256 = "066vlr9k5f44w9gl9382hlxnryq00d5p6c7w5vq1fgc7v9b49w6k";
2015-04-27 04:15:25 +00:00
};
})