nixpkgs/pkgs/shells/nushell/plugins/default.nix
2023-10-23 12:39:21 +00:00

10 lines
410 B
Nix

{ 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 { };
net = callPackage ./net.nix { inherit IOKit CoreFoundation; };
})