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.

17 lines
406 B
Nix
Raw Normal View History

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