about summary refs log tree commit diff
path: root/pkgs/development/interpreters/tcl/8.5.nix
blob: 7676fbfc187d4da643569ecec5904b72b50f51c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, fetchurl, ... } @ args:

callPackage ./generic.nix (args // rec {
  release = "8.5";
  version = "${release}.19";

  # 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 = "066vlr9k5f44w9gl9382hlxnryq00d5p6c7w5vq1fgc7v9b49w6k";
  };
})