nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 70 lines 1.8 kB view raw
1{ lib, newScope, config }: 2 3lib.makeScope newScope (self: with self; { 4 async-prompt = callPackage ./async-prompt.nix { }; 5 6 autopair = callPackage ./autopair.nix { }; 7 8 bobthefish = callPackage ./bobthefish.nix { }; 9 10 bobthefisher = callPackage ./bobthefisher.nix { }; 11 12 buildFishPlugin = callPackage ./build-fish-plugin.nix { }; 13 14 colored-man-pages = callPackage ./colored-man-pages.nix { }; 15 16 clownfish = callPackage ./clownfish.nix { }; 17 18 bass = callPackage ./bass.nix { }; 19 20 done = callPackage ./done.nix { }; 21 22 fifc = callPackage ./fifc.nix { }; 23 24 # Fishtape 2.x and 3.x aren't compatible, 25 # but both versions are used in the tests of different other plugins. 26 fishtape = callPackage ./fishtape.nix { }; 27 fishtape_3 = callPackage ./fishtape_3.nix { }; 28 29 foreign-env = callPackage ./foreign-env { }; 30 31 forgit = callPackage ./forgit.nix { }; 32 33 fzf = callPackage ./fzf.nix { }; 34 35 fzf-fish = callPackage ./fzf-fish.nix { }; 36 37 github-copilot-cli-fish = callPackage ./github-copilot-cli-fish.nix { }; 38 39 git-abbr = callPackage ./git-abbr.nix { }; 40 41 grc = callPackage ./grc.nix { }; 42 43 gruvbox = callPackage ./gruvbox.nix { }; 44 45 humantime-fish = callPackage ./humantime-fish.nix { }; 46 47 hydro = callPackage ./hydro.nix { }; 48 49 pisces = callPackage ./pisces.nix { }; 50 51 plugin-git = callPackage ./plugin-git.nix { }; 52 53 puffer = callPackage ./puffer.nix { }; 54 55 pure = callPackage ./pure.nix { }; 56 57 sdkman-for-fish = callPackage ./sdkman-for-fish.nix { }; 58 59 sponge = callPackage ./sponge.nix { }; 60 61 tide = callPackage ./tide.nix { }; 62 63 transient-fish = callPackage ./transient-fish.nix { }; 64 65 wakatime-fish = callPackage ./wakatime-fish.nix { }; 66 67 z = callPackage ./z.nix { }; 68} // lib.optionalAttrs config.allowAliases { 69 autopair-fish = self.autopair; # Added 2023-03-10 70})