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