summary refs log tree commit diff
path: root/pkgs/shells/nushell/plugins/default.nix
blob: f4571d4da0026cf1c49aefcacfe48366bda576c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ 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; };
  regex = callPackage ./regex.nix { inherit IOKit; };
  net = callPackage ./net.nix { inherit IOKit CoreFoundation; };
})