2017-02-26 21:25:29 +01:00
|
|
|
|
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst-plugins-base
|
2018-07-21 00:44:44 +00:00
|
|
|
|
, libmad, libdvdread, a52dec, x264, orc, lame, libintl }:
|
2011-07-25 20:10:45 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 16:55:18 +02:00
|
|
|
|
name = "gst-plugins-ugly-0.10.19";
|
2011-07-25 20:10:45 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
urls = [
|
|
|
|
|
"${meta.homepage}/src/gst-plugins-ugly/${name}.tar.bz2"
|
|
|
|
|
"mirror://gentoo/distfiles/${name}.tar.bz2"
|
|
|
|
|
];
|
2013-12-18 16:55:18 +02:00
|
|
|
|
sha256 = "1w4d5iz9ffvh43l261zdp997i6s2iwd61lflf755s3sw4xch1a8w";
|
2011-07-25 20:10:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs =
|
2018-03-14 14:15:06 -05:00
|
|
|
|
[ pkgconfig glib gstreamer gst-plugins-base libmad libdvdread a52dec x264 orc lame libintl ];
|
2011-07-25 20:10:45 +00:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
meta = {
|
2017-09-16 21:28:31 +02:00
|
|
|
|
homepage = https://gstreamer.freedesktop.org;
|
2011-07-25 20:10:45 +00:00
|
|
|
|
|
|
|
|
|
description = "‘Ugly’ (potentially patent-encumbered) plug-ins for GStreamer";
|
|
|
|
|
|
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
2015-04-08 23:12:30 -04:00
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-07-25 20:10:45 +00:00
|
|
|
|
|
2014-06-19 06:19:00 +02:00
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-07-25 20:10:45 +00:00
|
|
|
|
};
|
|
|
|
|
}
|