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})