1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Make hydraJobs.build include the constituent packages

We were only doing that for the more exotic builds, just forgot.
This commit is contained in:
John Ericson 2024-06-17 08:29:02 -04:00
parent e48abec567
commit 5e806673c3

View file

@ -41,7 +41,8 @@ let
in in
{ {
# Binary package for various platforms. # Binary package for various platforms.
build = forAllSystems (system: self.packages.${system}.nix); build = forAllPackages (pkgName:
forAllSystems (system: self.packages.${system}.${pkgName}));
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation); shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);