mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 00:14:43 +00:00
7 lines
197 B
Nix
7 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; };
|
|
})
|