linux-rpi: fix eval on darwin (#428023)
This commit is contained in:
commit
b55d4456d4
@ -43,12 +43,12 @@ lib.overrideDerivation
|
|||||||
extraMeta =
|
extraMeta =
|
||||||
if (rpiVersion < 3) then
|
if (rpiVersion < 3) then
|
||||||
{
|
{
|
||||||
platforms = with lib.platforms; arm;
|
platforms = with lib.platforms; lib.intersectLists arm linux;
|
||||||
hydraPlatforms = [ ];
|
hydraPlatforms = [ ];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
platforms = with lib.platforms; arm ++ aarch64;
|
platforms = with lib.platforms; lib.intersectLists (arm ++ aarch64) linux;
|
||||||
hydraPlatforms = [ "aarch64-linux" ];
|
hydraPlatforms = [ "aarch64-linux" ];
|
||||||
};
|
};
|
||||||
ignoreConfigErrors = true;
|
ignoreConfigErrors = true;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user