Allow insecure qtwebengine for stremio in CI
Some checks failed
CI / build-and-cache (push) Has been cancelled
CI / check (push) Has been cancelled

qtwebengine-5.15.19 is marked insecure but stremio requires it.
Add to permittedInsecurePackages for the pkgsQt import.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
mayor
2026-02-14 14:49:09 -08:00
committed by John Ogle
parent b6ae5e92b3
commit 1a57eb737c

View File

@@ -247,7 +247,10 @@
}; };
pkgsQt = import inputs.nixpkgs-qt { pkgsQt = import inputs.nixpkgs-qt {
inherit system; inherit system;
config.allowUnfree = true; config = {
allowUnfree = true;
permittedInsecurePackages = [ "qtwebengine-5.15.19" ];
};
}; };
# Version strings for flake input packages # Version strings for flake input packages
beadsRev = builtins.substring 0 8 (inputs.beads.rev or "unknown"); beadsRev = builtins.substring 0 8 (inputs.beads.rev or "unknown");