9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
6 lines
197 B
Nix
6 lines
197 B
Nix
{ lib, newScope, IOKit, CoreFoundation }:
|
|
|
|
lib.makeScope newScope (self: with self; {
|
|
gstat = callPackage ./gstat.nix { };
|
|
query = callPackage ./query.nix { inherit IOKit CoreFoundation; };
|
|
})
|