mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Merge pull request #19990 from domenkozar/buildtheworld
Build all derivations on Linux, unless specified otherwise
This commit is contained in:
commit
8b782f4bd4
|
@ -85,7 +85,7 @@ rec {
|
|||
packagePlatforms = mapAttrs (name: value:
|
||||
let res = builtins.tryEval (
|
||||
if isDerivation value then
|
||||
value.meta.hydraPlatforms or (value.meta.platforms or [])
|
||||
value.meta.hydraPlatforms or (value.meta.platforms or [ "x86_64-linux" ])
|
||||
else if value.recurseForDerivations or false || value.recurseForRelease or false then
|
||||
packagePlatforms value
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue