nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 16 lines 404 B view raw
1{ callPackage, fetchurl, ... }@args: 2 3callPackage ./generic.nix ( 4 args 5 // rec { 6 release = "8.6"; 7 version = "${release}.16"; 8 9 # Note: when updating, the hash in pkgs/development/libraries/tk/8.6.nix must also be updated! 10 11 src = fetchurl { 12 url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz"; 13 hash = "sha256-kcuPphdxxjwmLvtVMFm3x61nV6+lhXr2Jl5LC9wqFKU="; 14 }; 15 } 16)