nixpkgs/pkgs/shells/fish/plugins/default.nix
Mr Hedgehog 8a0e148134
fishPlugins.hydro: init at d487506 (#163325)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-10 14:13:39 +01:00

29 lines
682 B
Nix

{ lib, newScope }:
lib.makeScope newScope (self: with self; {
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
clownfish = callPackage ./clownfish.nix { };
done = callPackage ./done.nix { };
# Fishtape 2.x and 3.x aren't compatible,
# but both versions are used in the tests of different other plugins.
fishtape = callPackage ./fishtape.nix { };
fishtape_3 = callPackage ./fishtape_3.nix { };
foreign-env = callPackage ./foreign-env { };
forgit = callPackage ./forgit.nix { };
fzf-fish = callPackage ./fzf-fish.nix { };
hydro = callPackage ./hydro.nix { };
pisces = callPackage ./pisces.nix { };
pure = callPackage ./pure.nix { };
})