summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-04-27 11:47:06 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-04-30 17:51:05 -0300
commit72dacfd325b2e5bb7ec042403459e6458e8fa63b (patch)
tree1a6f00a681b35482ca738ef72faed43e27296c31 /pkgs/applications/audio
parentdf26e9a55dc22931bbad3ff81df03597059a1e35 (diff)
downloadnixpkgs-72dacfd325b2e5bb7ec042403459e6458e8fa63b.tar
nixpkgs-72dacfd325b2e5bb7ec042403459e6458e8fa63b.tar.gz
nixpkgs-72dacfd325b2e5bb7ec042403459e6458e8fa63b.tar.bz2
nixpkgs-72dacfd325b2e5bb7ec042403459e6458e8fa63b.tar.lz
nixpkgs-72dacfd325b2e5bb7ec042403459e6458e8fa63b.tar.xz
nixpkgs-72dacfd325b2e5bb7ec042403459e6458e8fa63b.tar.zst
nixpkgs-72dacfd325b2e5bb7ec042403459e6458e8fa63b.zip
quodlibet: xineLib -> xine-lib
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/quodlibet/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/quodlibet/default.nix b/pkgs/applications/audio/quodlibet/default.nix
index 2110a0deb24..738bf161cd5 100644
--- a/pkgs/applications/audio/quodlibet/default.nix
+++ b/pkgs/applications/audio/quodlibet/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchurl, python3, wrapGAppsHook, gettext, libsoup, gnome3, gtk3, gdk-pixbuf, librsvg,
   tag ? "", xvfb_run, dbus, glibcLocales, glib, glib-networking, gobject-introspection, hicolor-icon-theme,
   gst_all_1, withGstPlugins ? true,
-  xineBackend ? false, xineLib,
+  xineBackend ? false, xine-lib,
   withDbusPython ? false, withPyInotify ? false, withMusicBrainzNgs ? false, withPahoMqtt ? false,
   webkitgtk ? null,
   keybinder3 ? null, gtksourceview ? null, libmodplug ? null, kakasi ? null, libappindicator-gtk3 ? null }:
@@ -23,7 +23,7 @@ python3.pkgs.buildPythonApplication rec {
   checkInputs = [ gdk-pixbuf hicolor-icon-theme ] ++ (with python3.pkgs; [ pytest pytest_xdist polib xvfb_run dbus.daemon glibcLocales ]);
 
   buildInputs = [ gnome3.adwaita-icon-theme libsoup glib glib-networking gtk3 webkitgtk gdk-pixbuf keybinder3 gtksourceview libmodplug libappindicator-gtk3 kakasi gobject-introspection ]
-    ++ (if xineBackend then [ xineLib ] else with gst_all_1;
+    ++ (if xineBackend then [ xine-lib ] else with gst_all_1;
     [ gstreamer gst-plugins-base ] ++ optionals withGstPlugins [ gst-plugins-good gst-plugins-ugly gst-plugins-bad ]);
 
   propagatedBuildInputs = with python3.pkgs; [ pygobject3 pycairo mutagen gst-python feedparser ]