mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
exaile: Support more media formats by default
- gst-plugins-bad (m4a) - gst-plugins-ugly (wma) - gst-libav (wma)
This commit is contained in:
parent
98ec34599e
commit
1f1e07b4c4
@ -8,7 +8,6 @@
|
|||||||
, notificationSupport ? true
|
, notificationSupport ? true
|
||||||
, scalableIconSupport ? true
|
, scalableIconSupport ? true
|
||||||
, translationSupport ? true
|
, translationSupport ? true
|
||||||
, bpmCounterSupport ? false
|
|
||||||
, ipythonSupport ? false
|
, ipythonSupport ? false
|
||||||
, cdMetadataSupport ? false
|
, cdMetadataSupport ? false
|
||||||
, lastfmSupport ? false
|
, lastfmSupport ? false
|
||||||
@ -48,6 +47,9 @@ stdenv.mkDerivation rec {
|
|||||||
gstreamer
|
gstreamer
|
||||||
gst-plugins-base
|
gst-plugins-base
|
||||||
gst-plugins-good
|
gst-plugins-good
|
||||||
|
gst-plugins-bad
|
||||||
|
gst-plugins-ugly
|
||||||
|
gst-libav
|
||||||
]) ++ (with python3.pkgs; [
|
]) ++ (with python3.pkgs; [
|
||||||
bsddb3
|
bsddb3
|
||||||
dbus-python
|
dbus-python
|
||||||
@ -58,7 +60,6 @@ stdenv.mkDerivation rec {
|
|||||||
]) ++ lib.optional deviceDetectionSupport udisks
|
]) ++ lib.optional deviceDetectionSupport udisks
|
||||||
++ lib.optional notificationSupport libnotify
|
++ lib.optional notificationSupport libnotify
|
||||||
++ lib.optional scalableIconSupport librsvg
|
++ lib.optional scalableIconSupport librsvg
|
||||||
++ lib.optional bpmCounterSupport gst_all_1.gst-plugins-bad
|
|
||||||
++ lib.optional ipythonSupport python3.pkgs.ipython
|
++ lib.optional ipythonSupport python3.pkgs.ipython
|
||||||
++ lib.optional cdMetadataSupport python3.pkgs.discid
|
++ lib.optional cdMetadataSupport python3.pkgs.discid
|
||||||
++ lib.optional lastfmSupport python3.pkgs.pylast
|
++ lib.optional lastfmSupport python3.pkgs.pylast
|
||||||
|
Loading…
Reference in New Issue
Block a user