Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 22 lines 326 B view raw
1{ 2 callPackage, 3 fetchurl, 4 tcl, 5 ... 6}@args: 7 8callPackage ./generic.nix ( 9 args 10 // { 11 12 src = fetchurl { 13 url = "mirror://sourceforge/tcl/tk${tcl.version}-src.tar.gz"; 14 hash = "sha256-vp+U01ddSzCZ2EvDwQ3omU3y16pAUggXPHCcxASn5f4="; 15 }; 16 17 patches = [ 18 ./tk-8_6_13-find-library.patch 19 ]; 20 21 } 22)