ffc78d3539
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
13 lines
261 B
Nix
13 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 { };
|
|
|
|
})
|