2021-01-05 17:05:55 +00:00
|
|
|
{ lib, newScope }:
|
|
|
|
|
|
|
|
lib.makeScope newScope (self: with self; {
|
|
|
|
|
|
|
|
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
|
|
|
|
2021-03-12 07:09:13 +00:00
|
|
|
clownfish = callPackage ./clownfish.nix { };
|
|
|
|
|
2021-04-22 02:08:21 +00:00
|
|
|
done = callPackage ./done.nix { };
|
|
|
|
|
2021-03-12 07:09:13 +00:00
|
|
|
# Fishtape 2.x and 3.x aren't compatible,
|
|
|
|
# but both versions are used in the tests of different other plugins.
|
2021-01-05 17:05:55 +00:00
|
|
|
fishtape = callPackage ./fishtape.nix { };
|
2021-03-12 07:09:13 +00:00
|
|
|
fishtape_3 = callPackage ./fishtape_3.nix { };
|
2021-01-05 17:05:55 +00:00
|
|
|
|
|
|
|
foreign-env = callPackage ./foreign-env { };
|
|
|
|
|
2021-05-03 20:48:10 +00:00
|
|
|
forgit = callPackage ./forgit.nix { };
|
2021-04-26 19:14:03 +00:00
|
|
|
|
2021-03-12 07:09:13 +00:00
|
|
|
fzf-fish = callPackage ./fzf-fish.nix { };
|
|
|
|
|
2021-10-08 15:17:17 +00:00
|
|
|
pisces = callPackage ./pisces.nix { };
|
|
|
|
|
2021-01-05 17:05:55 +00:00
|
|
|
pure = callPackage ./pure.nix { };
|
|
|
|
|
|
|
|
})
|