about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNydragon <contact@ccnlc.eu>2024-05-06 13:24:59 +0900
committerNydragon <contact@ccnlc.eu>2024-05-06 13:24:59 +0900
commit93ecf9499319389c332bb7c810cdb086ec6d4ac3 (patch)
tree463758f5b66b37a873e018e10b3b3c06af1ed134
parentff59531e8319d7c068e54989923e70d8801bef94 (diff)
lollypop: add kid3 to build inputs.
Lollypop allows for metadata editing through kid3, which was missing from its derivation.
-rw-r--r--pkgs/applications/audio/lollypop/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/audio/lollypop/default.nix b/pkgs/applications/audio/lollypop/default.nix
index fb495a9971546..652c4ca2515e4 100644
--- a/pkgs/applications/audio/lollypop/default.nix
+++ b/pkgs/applications/audio/lollypop/default.nix
@@ -21,6 +21,7 @@
 , wrapGAppsHook
 , lastFMSupport ? true
 , youtubeSupport ? true
+, kid3Support ? true
 }:
 
 python3.pkgs.buildPythonApplication rec {
@@ -69,7 +70,8 @@ python3.pkgs.buildPythonApplication rec {
   propagatedBuildInputs = with python3.pkgs;
     [ beautifulsoup4 pillow pycairo pygobject3 ]
     ++ lib.optional lastFMSupport pylast
-    ++ lib.optional youtubeSupport youtube-dl;
+    ++ lib.optional youtubeSupport youtube-dl
+    ++ lib.optional kid3Support pkgs.kid3;
 
   postPatch = ''
     chmod +x meson_post_install.py