nixpkgs/pkgs/shells/nushell/plugins/default.nix
2023-05-17 11:41:32 +02:00

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; };
})