about summary refs log tree commit diff
path: root/pkgs/shells/nushell/plugins/default.nix
blob: 44b5b05a739f7cf2d916e5dfb99f4ab13e257400 (plain) (blame)
1
2
3
4
5
6
7
{ 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; };
})