fix(ci): repair galactica + raider toplevel eval after nixpkgs bump - #402
Open
github-actions[bot] wants to merge 2 commits into
Open
fix(ci): repair galactica + raider toplevel eval after nixpkgs bump#402github-actions[bot] wants to merge 2 commits into
github-actions[bot] wants to merge 2 commits into
Conversation
gst-vaapi was removed in GStreamer 1.28 (nixpkgs throws on the attribute), which broke raider's toplevel eval. VA-API decoding is now provided by gst-plugins-bad, which is already in the multimedia plugin list.
nixpkgs marked pnpm-9.15.9 insecure (multiple CVEs), and opencloud's web frontend pulls it as a build-time dependency, so galactica's toplevel failed to evaluate. Allow the package (build-time only, not runtime) via permittedInsecurePackages so the config evaluates again.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What broke
The Build & Cache workflow failed on
master(commit bed201e). Two hosts failed to evaluate theirsystem.build.toplevelafter the last flake bump — both are real config failures caused by upstream nixpkgs changes, not transient CI noise:galactica —
pnpm-9.15.9marked insecureThe trace goes through
systemd.units."opencloud-init-config.service".text→ theopencloudpackage, whose web frontend pullspnpm-9.15.9as a build-time dependency. Once nixpkgs flagged that pnpm insecure, galactica's whole toplevel stopped evaluating.raider —
gst_all_1.gst-vaapiremovedmodules/constellation/desktop.nixlistedgst_all_1.gst-vaapiin the multimedia plugins; nixpkgs nowthrows on that attribute.The fix
"pnpm-9.15.9"to the existingnixpkgs.config.permittedInsecurePackageslist. It's a build-time-only dependency of opencloud's frontend (not a runtime component), so allowing it restores evaluation.gst_all_1.gst-vaapifromdesktop.nix. VA-API decoding is now provided bygst-plugins-bad, which is already in the same plugin list, so no functionality is lost.Verification
Diagnosed from the CI log (
nix/alejandraaren't available in this sandbox, so no local build/format run). Changes are minimal and match surrounding indentation. The other hosts in the run failed only on transient infra (Magic Nix Cache throttling /attic push499) and need no code changes.