mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
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
@ -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 New Issue
Block a user