nix: Permit EoL Qt5 WebEngine for jellyfin-media-player

This commit is contained in:
Katherina Walshe-Grey 2025-09-02 00:54:52 +01:00
parent 3cdfe214f2
commit 993da5f90c

View file

@ -10,6 +10,15 @@
nixpkgs.config.allowUnfree = true;
nix.settings.trusted-users = [ "@wheel" ];
# Dependency of jellyfin-media-player, which hasn't upgraded to Qt6 yet
# Related tickets:
# - https://github.com/NixOS/nixpkgs/pull/435067
# - https://github.com/NixOS/nixpkgs/issues/437865
# - https://github.com/jellyfin/jellyfin-media-player/issues/282
nixpkgs.config.permittedInsecurePackages = [
"qtwebengine-5.15.19"
];
nix.package = pkgs.lixPackageSets.stable.lix;
nixpkgs.overlays = [
(final: prev: {