bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
10 lines
533 B
Nix
10 lines
533 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; };
|
|
polars = callPackage ./polars.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; };
|
|
})
|