587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
9 lines
466 B
Nix
9 lines
466 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 = throw "`nu_plugin_regex` is no longer compatible with the current Nushell release.";
|
|
net = callPackage ./net.nix { inherit IOKit CoreFoundation; };
|
|
})
|