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 { };
|
||
|
|
||
|
})
|