forked from the-distro/nix-gerrit
buildBazelPackageNG: fix passthru pass through
This commit is contained in:
parent
6591b76532
commit
d22de1f8f2
|
@ -82,7 +82,9 @@ let
|
||||||
bazelPhase = "build";
|
bazelPhase = "build";
|
||||||
|
|
||||||
inherit deps;
|
inherit deps;
|
||||||
passthru.shell = shell;
|
passthru = (base.passthru or {}) // {
|
||||||
|
inherit shell;
|
||||||
|
};
|
||||||
|
|
||||||
nativeBuildInputs = (base.nativeBuildInputs or []) ++ [
|
nativeBuildInputs = (base.nativeBuildInputs or []) ++ [
|
||||||
coreutils
|
coreutils
|
||||||
|
|
Loading…
Reference in a new issue