Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
326 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
callPackage,
fetchurl,
tcl,
...
}@args:
callPackage ./generic.nix (
args
// {
src = fetchurl {
url = "mirror://sourceforge/tcl/tk${tcl.version}-src.tar.gz";
hash = "sha256-vp+U01ddSzCZ2EvDwQ3omU3y16pAUggXPHCcxASn5f4=";
};
patches = [
./tk-8_6_13-find-library.patch
];
}
)