2013-12-23 15:36:37 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, gstreamer, gobjectIntrospection
|
|
|
|
, orc, alsaLib, libXv, pango, libtheora
|
|
|
|
, cdparanoia, libvisual
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-07-22 11:15:56 +01:00
|
|
|
name = "gst-plugins-base-1.4.0";
|
2013-12-23 15:36:37 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Base plugins and helper libraries";
|
|
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-01-02 02:33:36 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
2013-12-23 15:36:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.xz";
|
2014-07-22 11:15:56 +01:00
|
|
|
sha256 = "07jcs08hjyban0amls5s0g6i4a1hwiir1llwpqzlwkmnhfwx9bjx";
|
2013-12-23 15:36:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig python gobjectIntrospection
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
orc alsaLib libXv pango libtheora
|
|
|
|
cdparanoia libvisual
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ gstreamer ];
|
2014-08-12 21:17:38 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2013-12-23 15:36:37 +00:00
|
|
|
}
|
2014-08-12 21:17:38 +01:00
|
|
|
|