2017-02-26 12:25:29 -08:00
|
|
|
|
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst-plugins-base
|
2018-07-20 17:44:44 -07:00
|
|
|
|
, libmad, libdvdread, a52dec, x264, orc, lame, libintl }:
|
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 =
|
2018-03-14 12:15:06 -07:00
|
|
|
|
[ pkgconfig glib gstreamer gst-plugins-base libmad libdvdread a52dec x264 orc lame libintl ];
|
2011-07-25 13:10:45 -07:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
meta = {
|
2017-09-16 12:28:31 -07:00
|
|
|
|
homepage = https://gstreamer.freedesktop.org;
|
2011-07-25 13:10:45 -07:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
}
|