mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 18:03:59 +00:00
ccd2165aec
The current version in nixpkgs is no longer compatible with the current version of Nushell, and upstream is tracking the development branch of Nushell, and is incompatible with the stable release of Nushell. Background: https://github.com/fdncred/nu_plugin_regex/issues/3 This only made it into nixpkgs because there was a window in which the Nushell plugin API in the released version and the version used by this plugin were compatible.
10 lines
466 B
Nix
10 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; };
|
|
})
|