d94921db12
And relocate the installed fish functions to the `vendor_functions.d` so that they're automatically loaded.
14 lines
261 B
Nix
14 lines
261 B
Nix
{ lib, newScope }:
|
|
|
|
lib.makeScope newScope (self: with self; {
|
|
|
|
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
|
|
|
fishtape = callPackage ./fishtape.nix { };
|
|
|
|
foreign-env = callPackage ./foreign-env { };
|
|
|
|
pure = callPackage ./pure.nix { };
|
|
|
|
})
|