From 1f1e07b4c42f830244855b80cd03dc95f12439fc Mon Sep 17 00:00:00 2001 From: ryneeverett Date: Thu, 28 Sep 2023 00:23:45 -0400 Subject: [PATCH] exaile: Support more media formats by default - gst-plugins-bad (m4a) - gst-plugins-ugly (wma) - gst-libav (wma) --- pkgs/applications/audio/exaile/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/exaile/default.nix b/pkgs/applications/audio/exaile/default.nix index 92308a8d5208..77054b2d9144 100644 --- a/pkgs/applications/audio/exaile/default.nix +++ b/pkgs/applications/audio/exaile/default.nix @@ -8,7 +8,6 @@ , notificationSupport ? true , scalableIconSupport ? true , translationSupport ? true -, bpmCounterSupport ? false , ipythonSupport ? false , cdMetadataSupport ? false , lastfmSupport ? false @@ -48,6 +47,9 @@ stdenv.mkDerivation rec { gstreamer gst-plugins-base gst-plugins-good + gst-plugins-bad + gst-plugins-ugly + gst-libav ]) ++ (with python3.pkgs; [ bsddb3 dbus-python @@ -58,7 +60,6 @@ stdenv.mkDerivation rec { ]) ++ lib.optional deviceDetectionSupport udisks ++ lib.optional notificationSupport libnotify ++ lib.optional scalableIconSupport librsvg - ++ lib.optional bpmCounterSupport gst_all_1.gst-plugins-bad ++ lib.optional ipythonSupport python3.pkgs.ipython ++ lib.optional cdMetadataSupport python3.pkgs.discid ++ lib.optional lastfmSupport python3.pkgs.pylast