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 > ""
This commit is contained in:
parent
317484b1ea
commit
c9feed814b
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue