Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11 9 lines 425 B view raw
1{ lib, newScope, IOKit, CoreFoundation, Foundation, Security }: 2 3lib.makeScope newScope (self: with self; { 4 gstat = callPackage ./gstat.nix { inherit Security; }; 5 formats = callPackage ./formats.nix { inherit IOKit Foundation; }; 6 query = callPackage ./query.nix { inherit IOKit CoreFoundation; }; 7 regex = callPackage ./regex.nix { inherit IOKit; }; 8 net = callPackage ./net.nix { inherit IOKit CoreFoundation; }; 9})