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 { };
|
|
|
|
|
|
|
|
# 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-03-12 07:09:13 +00:00
|
|
|
fzf-fish = callPackage ./fzf-fish.nix { };
|
|
|
|
|
2021-01-05 17:05:55 +00:00
|
|
|
pure = callPackage ./pure.nix { };
|
|
|
|
|
|
|
|
})
|