summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/default.nix
blob: 50b8eb4d981e0eefad68d9839100af6b5660aef9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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.
  fishtape = callPackage ./fishtape.nix { };
  fishtape_3 = callPackage ./fishtape_3.nix { };

  foreign-env = callPackage ./foreign-env { };

  fzf-fish = callPackage ./fzf-fish.nix { };

  pure = callPackage ./pure.nix { };

})