From c9feed814b5c766b7df5db1d7599fd7c001fb3ac Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Wed, 10 Jan 2024 08:56:39 -0500 Subject: [PATCH] mkvtoolnix: Fix missing qtwayland Without this, `QT_QPA_PLATFORM=wayland-egl mkvtoolnix-gui` results in > qt.qpa.plugin: Could not find the Qt platform plugin "wayland-egl" in > "" --- pkgs/applications/video/mkvtoolnix/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix index 9e5376ee1cfb..b6d79695f5d3 100644 --- a/pkgs/applications/video/mkvtoolnix/default.nix +++ b/pkgs/applications/video/mkvtoolnix/default.nix @@ -25,6 +25,7 @@ , pugixml , qtbase , qtmultimedia +, qtwayland , utf8cpp , xdg-utils , zlib @@ -90,6 +91,7 @@ stdenv.mkDerivation rec { zlib ] ++ optionals withGUI [ cmark ] + ++ optionals stdenv.isLinux [ qtwayland ] ++ optionals stdenv.isDarwin [ libiconv ]; # autoupdate is not needed but it silences a ton of pointless warnings