Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 26 lines 518 B view raw
1let 2 autoCalledPackages = import ./by-name-overlay.nix ../development/tcl-modules/by-name; 3in 4 5{ 6 lib, 7 newScope, 8 tcl, 9 tk, 10 pkgs, 11}: 12 13lib.makeScope newScope ( 14 lib.extends autoCalledPackages (self: { 15 inherit tcl tk; 16 inherit (tcl) mkTclDerivation tclPackageHook; 17 18 critcl = self.callPackage ../development/tcl-modules/critcl { 19 tcllib = self.tcllib.override { withCritcl = false; }; 20 }; 21 22 dbus = self.callPackage ../development/tcl-modules/dbus { 23 inherit (pkgs) dbus; 24 }; 25 }) 26)