nixpkgs/pkgs/shells/fish/plugins/default.nix

21 lines
520 B
Nix
Raw Normal View History

{ lib, newScope }:
lib.makeScope newScope (self: with self; {
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
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.
2020-12-28 21:15:08 +01:00
fishtape = callPackage ./fishtape.nix { };
fishtape_3 = callPackage ./fishtape_3.nix { };
2020-12-28 21:15:08 +01:00
foreign-env = callPackage ./foreign-env { };
2021-03-09 13:11:49 +01:00
fzf-fish = callPackage ./fzf-fish.nix { };
2020-12-28 21:15:57 +01:00
pure = callPackage ./pure.nix { };
})