2020-12-28 20:14:26 +00:00
|
|
|
{ lib, newScope }:
|
|
|
|
|
|
|
|
lib.makeScope newScope (self: with self; {
|
|
|
|
|
|
|
|
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
|
|
|
|
2021-03-09 12:08:17 +00:00
|
|
|
clownfish = callPackage ./clownfish.nix { };
|
|
|
|
|
2021-04-13 01:56:46 +00:00
|
|
|
done = callPackage ./done.nix { };
|
|
|
|
|
2021-03-09 12:10:36 +00:00
|
|
|
# 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 { };
|
2021-03-09 12:10:36 +00:00
|
|
|
fishtape_3 = callPackage ./fishtape_3.nix { };
|
2020-12-28 20:15:08 +00:00
|
|
|
|
2020-12-29 08:44:18 +00:00
|
|
|
foreign-env = callPackage ./foreign-env { };
|
|
|
|
|
2021-04-28 22:54:46 +00:00
|
|
|
forgit = callPackage ./forgit.nix { };
|
2021-04-26 10:54:29 +00:00
|
|
|
|
2021-03-09 12:11:49 +00:00
|
|
|
fzf-fish = callPackage ./fzf-fish.nix { };
|
|
|
|
|
2022-05-27 11:11:54 +00:00
|
|
|
grc = callPackage ./grc.nix { };
|
|
|
|
|
2022-03-10 13:13:39 +00:00
|
|
|
hydro = callPackage ./hydro.nix { };
|
|
|
|
|
2021-10-08 08:11:53 +00:00
|
|
|
pisces = callPackage ./pisces.nix { };
|
|
|
|
|
2020-12-28 20:15:57 +00:00
|
|
|
pure = callPackage ./pure.nix { };
|
|
|
|
|
2020-12-28 20:14:26 +00:00
|
|
|
})
|