2020-12-28 12:14:26 -08:00
|
|
|
{ lib, newScope }:
|
|
|
|
|
|
|
|
lib.makeScope newScope (self: with self; {
|
|
|
|
|
|
|
|
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
|
|
|
|
2021-03-09 04:08:17 -08:00
|
|
|
clownfish = callPackage ./clownfish.nix { };
|
|
|
|
|
2021-04-12 18:56:46 -07:00
|
|
|
done = callPackage ./done.nix { };
|
|
|
|
|
2021-03-09 04:10:36 -08: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 12:15:08 -08:00
|
|
|
fishtape = callPackage ./fishtape.nix { };
|
2021-03-09 04:10:36 -08:00
|
|
|
fishtape_3 = callPackage ./fishtape_3.nix { };
|
2020-12-28 12:15:08 -08:00
|
|
|
|
2020-12-29 00:44:18 -08:00
|
|
|
foreign-env = callPackage ./foreign-env { };
|
|
|
|
|
2021-04-28 15:54:46 -07:00
|
|
|
forgit = callPackage ./forgit.nix { };
|
2021-04-26 03:54:29 -07:00
|
|
|
|
2021-03-09 04:11:49 -08:00
|
|
|
fzf-fish = callPackage ./fzf-fish.nix { };
|
|
|
|
|
2020-12-28 12:15:57 -08:00
|
|
|
pure = callPackage ./pure.nix { };
|
|
|
|
|
2020-12-28 12:14:26 -08:00
|
|
|
})
|