chickenPackages*.eggDerivation: set meta.platforms if not provided

This will ensure that Hydra attempts to build the eggs on all supported
platforms instead of just the platform the evaluator is running
on (currently x86_64-linux).
This commit is contained in:
sternenseemann 2022-11-19 15:18:07 +01:00
parent 5e13281594
commit b394f86dcb
2 changed files with 10 additions and 2 deletions

View file

@ -42,4 +42,8 @@ stdenv.mkDerivation ({
runHook postInstall
'';
} // (builtins.removeAttrs args ["name" "buildInputs"]) // override)
meta = {
inherit (chicken.meta) platforms;
} // args.meta or {};
} // (builtins.removeAttrs args ["name" "buildInputs" "meta"]) // override)

View file

@ -39,4 +39,8 @@ stdenv.mkDerivation ({
runHook postInstall
'';
} // (builtins.removeAttrs args ["name" "buildInputs"]) // override)
meta = {
inherit (chicken.meta) platforms;
} // args.meta or {};
} // (builtins.removeAttrs args ["name" "buildInputs" "meta"]) // override)