2023-09-07 15:31:03 +02:00
|
|
|
{ lib, newScope, IOKit, CoreFoundation, Foundation, Security }:
|
2023-04-05 17:37:28 +02:00
|
|
|
|
|
|
|
lib.makeScope newScope (self: with self; {
|
2023-09-07 15:31:03 +02:00
|
|
|
gstat = callPackage ./gstat.nix { inherit Security; };
|
|
|
|
formats = callPackage ./formats.nix { inherit IOKit Foundation; };
|
2023-04-05 17:37:28 +02:00
|
|
|
query = callPackage ./query.nix { inherit IOKit CoreFoundation; };
|
2023-10-28 08:29:09 +02:00
|
|
|
regex = callPackage ./regex.nix { inherit IOKit; };
|
2023-10-22 19:40:49 +02:00
|
|
|
net = callPackage ./net.nix { inherit IOKit CoreFoundation; };
|
2023-04-05 17:37:28 +02:00
|
|
|
})
|