about summary refs log tree commit diff
path: root/pkgs/shells/nushell/plugins/default.nix
blob: e79373da156e1b14313867565ce4aa1fc6241b4a (plain) (blame)
1
2
3
4
5
6
{ lib, newScope, IOKit, CoreFoundation }:

lib.makeScope newScope (self: with self; {
  gstat = callPackage ./gstat.nix { };
  query = callPackage ./query.nix { inherit IOKit CoreFoundation; };
})