summary refs log blame commit diff
path: root/pkgs/development/interpreters/tcl/8.6.nix
blob: 03fcb8317792d62175674ee18e1525448a9b914a (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                        
                            
 

                                                                                                

                                                              
                                                                    

    
{ 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";
  };
})