Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
21 lines
522 B
Nix
21 lines
522 B
Nix
{ callPackage, fetchurl, ... }@args:
|
|
|
|
callPackage ./generic.nix (
|
|
args
|
|
// rec {
|
|
release = "8.5";
|
|
version = "${release}.19";
|
|
|
|
# Note: when updating, the hash in pkgs/development/libraries/tk/8.5.nix must also be updated!
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tcl/tcl${version}-src.tar.gz";
|
|
sha256 = "066vlr9k5f44w9gl9382hlxnryq00d5p6c7w5vq1fgc7v9b49w6k";
|
|
};
|
|
|
|
extraPatch = ''
|
|
substituteInPlace 'generic/tclInt.h' --replace-fail 'typedef int ptrdiff_t;' ""
|
|
'';
|
|
}
|
|
)
|