base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / top-level / tcl-packages.nix
blob6be1844b4c36a9b0fc53d5e20723f57cefc9c4bf
1 let
2   autoCalledPackages = import ./by-name-overlay.nix ../development/tcl-modules/by-name;
3 in
6   lib,
7   newScope,
8   tcl,
9   tk,
12 lib.makeScope newScope (
13   lib.extends autoCalledPackages (self: {
14     inherit tcl tk;
15     inherit (tcl) mkTclDerivation tclPackageHook;
17     critcl = self.callPackage ../development/tcl-modules/critcl {
18       tcllib = self.tcllib.override { withCritcl = false; };
19     };
20   })