nixpkgs/pkgs/shells/nushell/plugins/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
425 B
Nix
Raw Normal View History

{ lib, newScope, IOKit, CoreFoundation, Foundation, Security }:
2023-04-05 17:37:28 +02:00
lib.makeScope newScope (self: with self; {
gstat = callPackage ./gstat.nix { inherit Security; };
formats = callPackage ./formats.nix { inherit IOKit Foundation; };
2023-04-05 17:37:28 +02:00
query = callPackage ./query.nix { inherit IOKit CoreFoundation; };
2023-10-28 08:29:09 +02:00
regex = callPackage ./regex.nix { inherit IOKit; };
net = callPackage ./net.nix { inherit IOKit CoreFoundation; };
2023-04-05 17:37:28 +02:00
})