e42f6a11ac
CVE-2016-9807, CVE-2016-9808, CVE-2016-9809, CVE-2016-9810, CVE-2016-9811, CVE-2016-9812, CVE-2016-9813, CVE-2016-9634, CVE-2016-9635, CVE-2016-9636 https://gstreamer.freedesktop.org/releases/1.10/#1.10.2
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, python
|
|
, gst-plugins-base, orc
|
|
, a52dec, libcdio, libdvdread
|
|
, lame, libmad, libmpeg2, x264, libintlOrEmpty
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-plugins-ugly-1.10.2";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Gstreamer Ugly Plugins";
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
longDescription = ''
|
|
a set of plug-ins that have good quality and correct functionality,
|
|
but distributing them might pose problems. The license on either
|
|
the plug-ins or the supporting libraries might not be how we'd
|
|
like. The code might be widely known to present patent problems.
|
|
'';
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/src/gst-plugins-ugly/${name}.tar.xz";
|
|
sha256 = "17gc2zd3v6spmm2d6912sqfcyyv5f2ghdhq31f5kx5mw5r6ds0zk";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig python ];
|
|
|
|
buildInputs = [
|
|
gst-plugins-base orc
|
|
a52dec libcdio libdvdread
|
|
lame libmad libmpeg2 x264
|
|
] ++ libintlOrEmpty;
|
|
|
|
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
|
|
}
|