mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02: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:
parent
e48abec567
commit
5e806673c3
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ let
|
|||
in
|
||||
{
|
||||
# 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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue