nixpkgs/pkgs/shells/fish/plugins/default.nix

25 lines
600 B
Nix
Raw Normal View History

{ lib, newScope }:
lib.makeScope newScope (self: with self; {
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
clownfish = callPackage ./clownfish.nix { };
2021-04-13 01:56:46 +00:00
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.
2020-12-28 20:15:08 +00:00
fishtape = callPackage ./fishtape.nix { };
fishtape_3 = callPackage ./fishtape_3.nix { };
2020-12-28 20:15:08 +00:00
foreign-env = callPackage ./foreign-env { };
forgit = callPackage ./forgit.nix { };
2021-03-09 12:11:49 +00:00
fzf-fish = callPackage ./fzf-fish.nix { };
2020-12-28 20:15:57 +00:00
pure = callPackage ./pure.nix { };
})