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