2023-10-09 19:29:22 +00:00
|
|
|
{ lib, newScope, IOKit, CoreFoundation, Foundation, Security }:
|
2023-04-12 12:48:02 +00:00
|
|
|
|
|
|
|
lib.makeScope newScope (self: with self; {
|
2023-10-09 19:29:22 +00:00
|
|
|
gstat = callPackage ./gstat.nix { inherit Security; };
|
|
|
|
formats = callPackage ./formats.nix { inherit IOKit Foundation; };
|
2023-04-12 12:48:02 +00:00
|
|
|
query = callPackage ./query.nix { inherit IOKit CoreFoundation; };
|
|
|
|
})
|