lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 13 lines 403 B view raw
1{ callPackage, fetchurl, tcl, stdenv, ... } @ args: 2 3callPackage ./generic.nix (args // rec { 4 5 src = fetchurl { 6 url = "mirror://sourceforge/tcl/tk${tcl.version}-src.tar.gz"; 7 sha256 = "17diivcfcwdhp4v5zi6j9nkxncccjqkivhp363c4wx5lf4d3fb6n"; 8 }; 9 10 patches = [ ./different-prefix-with-tcl.patch ] ++ stdenv.lib.optionals stdenv.isDarwin [ ./Fix-bad-install_name-for-libtk8.6.dylib.patch ]; 11 12}) 13