Merge pull request #1482 from NixOS/hydra-passthru

Expose nix package in hydra package
This commit is contained in:
Jörg Thalheim 2025-04-29 18:35:50 +00:00 committed by GitHub
commit 8d068fea3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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