nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, newScope }:
2
3lib.makeScope newScope (self: with self; {
4
5 autopair-fish = callPackage ./autopair-fish.nix { };
6
7 buildFishPlugin = callPackage ./build-fish-plugin.nix { };
8
9 colored-man-pages = callPackage ./colored-man-pages.nix { };
10
11 clownfish = callPackage ./clownfish.nix { };
12
13 bass = callPackage ./bass.nix { };
14
15 done = callPackage ./done.nix { };
16
17 # Fishtape 2.x and 3.x aren't compatible,
18 # but both versions are used in the tests of different other plugins.
19 fishtape = callPackage ./fishtape.nix { };
20 fishtape_3 = callPackage ./fishtape_3.nix { };
21
22 foreign-env = callPackage ./foreign-env { };
23
24 forgit = callPackage ./forgit.nix { };
25
26 fzf-fish = callPackage ./fzf-fish.nix { };
27
28 grc = callPackage ./grc.nix { };
29
30 hydro = callPackage ./hydro.nix { };
31
32 pisces = callPackage ./pisces.nix { };
33
34 pure = callPackage ./pure.nix { };
35
36 sponge = callPackage ./sponge.nix { };
37
38 tide = callPackage ./tide.nix { };
39})