nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ callPackage, fetchurl, ... } @ args:
2
3callPackage ./generic.nix (args // rec {
4 release = "8.5";
5 version = "${release}.19";
6
7 # Note: when updating, the hash in pkgs/development/libraries/tk/8.5.nix must also be updated!
8
9 src = fetchurl {
10 url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
11 sha256 = "066vlr9k5f44w9gl9382hlxnryq00d5p6c7w5vq1fgc7v9b49w6k";
12 };
13})