2012-03-14 12:35:35 -07:00
|
|
|
|
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst_plugins_base
|
2015-12-14 18:12:52 -08:00
|
|
|
|
, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, lame, libintlOrEmpty }:
|
2011-07-25 13:10:45 -07:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 06:55:18 -08:00
|
|
|
|
name = "gst-plugins-ugly-0.10.19";
|
2011-07-25 13:10:45 -07:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
urls = [
|
|
|
|
|
"${meta.homepage}/src/gst-plugins-ugly/${name}.tar.bz2"
|
|
|
|
|
"mirror://gentoo/distfiles/${name}.tar.bz2"
|
|
|
|
|
];
|
2013-12-18 06:55:18 -08:00
|
|
|
|
sha256 = "1w4d5iz9ffvh43l261zdp997i6s2iwd61lflf755s3sw4xch1a8w";
|
2011-07-25 13:10:45 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs =
|
2015-12-14 18:12:52 -08:00
|
|
|
|
[ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc lame ] ++ libintlOrEmpty;
|
2015-04-08 20:12:30 -07:00
|
|
|
|
|
|
|
|
|
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
|
2011-07-25 13:10:45 -07:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://gstreamer.freedesktop.org;
|
|
|
|
|
|
|
|
|
|
description = "‘Ugly’ (potentially patent-encumbered) plug-ins for GStreamer";
|
|
|
|
|
|
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
2015-04-08 20:12:30 -07:00
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-07-25 13:10:45 -07:00
|
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-07-25 13:10:45 -07:00
|
|
|
|
};
|
|
|
|
|
}
|