gst-plugins-base: align attrname with pkgname

This commit is contained in:
Bjørn Forsman
2017-02-27 12:16:26 +01:00
committed by Robin Gloster
parent c49533a494
commit 3d104ab2b3
40 changed files with 88 additions and 87 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, makeDesktopItem
, libXrender, libX11, libXext, libXt, alsaLib, dbus, dbus_glib, glib, gtk2
, atk, pango, freetype, fontconfig, gdk_pixbuf, cairo, zlib
, gstreamer, gst_plugins_base, gst-plugins-good, gst-ffmpeg, gmp, ffmpeg
, gstreamer, gst-plugins-base, gst-plugins-good, gst-ffmpeg, gmp, ffmpeg
, libpulseaudio
, mediaSupport ? false
}:
@@ -11,12 +11,12 @@ let
stdenv.cc.cc zlib glib alsaLib dbus dbus_glib gtk2 atk pango freetype
fontconfig gdk_pixbuf cairo libXrender libX11 libXext libXt
] ++ stdenv.lib.optionals mediaSupport [
gstreamer gst_plugins_base gmp ffmpeg
gstreamer gst-plugins-base gmp ffmpeg
libpulseaudio
]);
# Ignored if !mediaSupport
gstPlugins = [ gstreamer gst_plugins_base gst-plugins-good gst-ffmpeg ];
gstPlugins = [ gstreamer gst-plugins-base gst-plugins-good gst-ffmpeg ];
gstPluginsPath = stdenv.lib.concatMapStringsSep ":" (x:
"${x}/lib/gstreamer-0.10") gstPlugins;