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