nixpkgs/pkgs/shells/nushell/plugins/default.nix
Stanisław Pitucha 9ca9bd1a81 nushellPlugins: format plugin and fix darwin
Fix compilation under darwin and add the formats plugin to support ini,
ical and others.
2023-09-09 12:38:31 +00:00

8 lines
306 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; };
})