Commit b394f86d authored by sternenseemann's avatar sternenseemann
Browse files

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).
parent 5e132815
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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)
+5 −1
Original line number Diff line number Diff line
@@ -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)