about summary refs log tree commit diff
path: root/pkgs/applications/plasma-mobile
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2022-11-30 23:03:28 -0500
committerSamuel Dionne-Riel <samuel@dionne-riel.com>2022-11-30 23:03:28 -0500
commit9035cb111a20dfdf791d6ba9ea73f64132692ea7 (patch)
treeb957fc5e34c79c488c55d15ebe3219dccc70a737 /pkgs/applications/plasma-mobile
parent4b8a04a32bf837f86e7ffdfaed02eadfd77471bc (diff)
audiotube: Add missing qtimageformats dependency
It is *recommended* in the README. (but not required?)

> YouTube uses webp images for the cover art, so you will need to install qtimageformats.

This solves these logged messages:

```
[...] RoundedImage.qml:16:9: QML Image: Error decoding [...].webp: Unsupported image format
```
Diffstat (limited to 'pkgs/applications/plasma-mobile')
-rw-r--r--pkgs/applications/plasma-mobile/audiotube.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/plasma-mobile/audiotube.nix b/pkgs/applications/plasma-mobile/audiotube.nix
index ee98e524afcee..d6b9c85359ed1 100644
--- a/pkgs/applications/plasma-mobile/audiotube.nix
+++ b/pkgs/applications/plasma-mobile/audiotube.nix
@@ -8,6 +8,7 @@
 , kcrash
 , ki18n
 , kirigami2
+, qtimageformats
 , qtmultimedia
 , qtquickcontrols2
 , python3Packages
@@ -30,6 +31,7 @@ mkDerivation rec {
     kcrash
     ki18n
     kirigami2
+    qtimageformats
     qtmultimedia
     qtquickcontrols2
   ] ++ pythonPath;