{ stdenv, fetchurl, pkgconfig, python , gst-plugins-base, orc, bzip2 , libv4l, libdv, libavc1394, libiec61883 , libvpx, speex, flac, taglib , cairo, gdk_pixbuf, aalib, libcaca , libsoup, pulseaudio }: stdenv.mkDerivation rec { name = "gst-plugins-good-1.4.1"; meta = with stdenv.lib; { description = "Gstreamer Good Plugins"; homepage = "http://gstreamer.freedesktop.org"; longDescription = '' a set of plug-ins that we consider to have good quality code, correct functionality, our preferred license (LGPL for the plug-in code, LGPL or LGPL-compatible for the supporting library). ''; license = licenses.lgpl2Plus; platforms = platforms.linux; maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz"; sha256 = "8559d4270065b30ed5c49b826e1b7a3a2bd5ee9a340ae745a2ae3f9718e4c637"; }; nativeBuildInputs = [ pkgconfig python ]; buildInputs = [ gst-plugins-base orc bzip2 libv4l libdv libavc1394 libiec61883 libvpx speex flac taglib cairo gdk_pixbuf aalib libcaca libsoup pulseaudio ]; }