hydra: expose nix-cli package

This makes it easier in other packages to get the nix version used to
build Hydra.
This commit is contained in:
Jörg Thalheim 2025-04-29 20:06:35 +02:00 committed by ahuston-0
parent 1001b67704
commit 21f793e21b
No known key found for this signature in database
GPG Key ID: 47940175096C1330

View File

@ -277,5 +277,8 @@ stdenv.mkDerivation (finalAttrs: {
dontStrip = true;
meta.description = "Build of Hydra on ${stdenv.system}";
passthru = { inherit perlDeps; };
passthru = {
inherit perlDeps;
nix = nixComponents.nix-cli;
};
})