2013-07-03 16:25:53 +02:00
|
|
|
{ fetchurl, stdenv, pkgconfig, python, gstreamer, xlibs, alsaLib, cdparanoia
|
2013-12-14 09:15:15 +01:00
|
|
|
, libogg, libtheora, libvorbis, freetype, pango, liboil, glib, cairo, orc
|
2013-07-14 00:06:01 +02:00
|
|
|
, libintlOrEmpty
|
2010-10-11 00:34:48 +02:00
|
|
|
, # Whether to build no plugins that have external dependencies
|
|
|
|
# (except the ALSA plugin).
|
|
|
|
minimalDeps ? false
|
|
|
|
}:
|
2008-11-19 22:46:01 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-07-16 06:02:24 +02:00
|
|
|
name = "gst-plugins-base-0.10.36";
|
2008-11-19 22:46:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-09-30 14:45:15 +02:00
|
|
|
urls = [
|
2012-07-16 06:02:24 +02:00
|
|
|
"${meta.homepage}/src/gst-plugins-base/${name}.tar.xz"
|
|
|
|
"mirror://gentoo/distfiles/${name}.tar.xz"
|
2009-09-30 14:45:15 +02:00
|
|
|
];
|
2012-07-16 06:02:24 +02:00
|
|
|
sha256 = "0jp6hjlra98cnkal4n6bdmr577q8mcyp3c08s3a02c4hjhw5rr0z";
|
2008-11-19 22:46:01 +01:00
|
|
|
};
|
|
|
|
|
2010-09-01 10:36:24 +02:00
|
|
|
patchPhase = ''
|
2013-12-14 09:15:15 +01:00
|
|
|
|
2010-09-01 10:36:24 +02:00
|
|
|
sed -i 's@/bin/echo@echo@g' configure
|
|
|
|
sed -i -e 's/^ /\t/' docs/{libs,plugins}/Makefile.in
|
|
|
|
'';
|
2008-11-19 22:46:01 +01:00
|
|
|
|
2010-10-11 00:34:48 +02:00
|
|
|
# TODO : v4l, libvisual
|
|
|
|
buildInputs =
|
2013-12-14 09:15:15 +01:00
|
|
|
[ pkgconfig glib cairo orc ]
|
2013-07-03 16:25:53 +02:00
|
|
|
# can't build alsaLib on darwin
|
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib
|
2010-10-11 00:34:48 +02:00
|
|
|
++ stdenv.lib.optionals (!minimalDeps)
|
2013-07-03 16:25:53 +02:00
|
|
|
[ xlibs.xlibs xlibs.libXv libogg libtheora libvorbis freetype pango
|
|
|
|
liboil ]
|
|
|
|
# can't build cdparanoia on darwin
|
2013-07-14 00:06:01 +02:00
|
|
|
++ stdenv.lib.optional (!minimalDeps && !stdenv.isDarwin) cdparanoia
|
|
|
|
++ libintlOrEmpty;
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
2008-11-19 22:46:01 +01:00
|
|
|
|
2010-10-11 00:34:48 +02:00
|
|
|
propagatedBuildInputs = [ gstreamer ];
|
2013-12-14 09:15:15 +01:00
|
|
|
|
2010-10-11 00:34:48 +02:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
2013-12-14 09:15:15 +01:00
|
|
|
|
2013-07-03 16:25:53 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://gstreamer.freedesktop.org;
|
2009-04-09 15:05:10 +02:00
|
|
|
description = "Base plug-ins for GStreamer";
|
2013-07-04 18:13:20 +02:00
|
|
|
license = licenses.lgpl2Plus;
|
2013-07-03 16:25:53 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2008-11-19 22:46:01 +01:00
|
|
|
};
|
|
|
|
}
|