5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
7 lines
306 B
Nix
7 lines
306 B
Nix
{ lib, newScope, IOKit, CoreFoundation, Foundation, Security }:
|
|
|
|
lib.makeScope newScope (self: with self; {
|
|
gstat = callPackage ./gstat.nix { inherit Security; };
|
|
formats = callPackage ./formats.nix { inherit IOKit Foundation; };
|
|
query = callPackage ./query.nix { inherit IOKit CoreFoundation; };
|
|
})
|