mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 08:04:47 +00:00
![pacien](/assets/img/avatar_default.png)
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 { };
|
|
|
|
})
|