add gstreamer 1.2.1

This commit is contained in:
Song Wenwu
2014-01-10 20:51:24 +08:00
parent 97d7c0abe5
commit 7a74215fac
8 changed files with 190 additions and 0 deletions
@@ -0,0 +1,28 @@
{ stdenv, fetchurl, pkgconfig, python
, gst-plugins-base, orc
, a52dec, libcdio, libdvdread
, lame, libmad, libmpeg2, x264
}:
stdenv.mkDerivation rec {
name = "gst-plugins-ugly-1.2.1";
meta = {
homepage = "http://gstreamer.freedesktop.org";
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.linux;
};
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-ugly/${name}.tar.xz";
sha256 = "35ae5d45de54827604e24f57f54ab30a5ab2245b4c4120977273eb11d19c2395";
};
nativeBuildInputs = [ pkgconfig python ];
buildInputs = [
gst-plugins-base orc
a52dec libcdio libdvdread
lame libmad libmpeg2 x264
];
}