From 993da5f90c44db2857b68aa19f5aa31ddaeaac6a Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Tue, 2 Sep 2025 00:54:52 +0100 Subject: [PATCH] nix: Permit EoL Qt5 WebEngine for jellyfin-media-player --- common/nix.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/common/nix.nix b/common/nix.nix index 1b4b96d..35c7505 100644 --- a/common/nix.nix +++ b/common/nix.nix @@ -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: {