7a6185d9a1
Fixes CVE-2016-9445, CVE-2016-9446, CVE-2016-9447.
32 lines
793 B
Nix
32 lines
793 B
Nix
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }:
|
|
|
|
let
|
|
ver_maj = "1.8";
|
|
ver_min = "0";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "gstreamermm-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz";
|
|
sha256 = "0i4sk6ns4dyi4szk45bkm4kvl57l52lgm15p2wg2rhx2gr2w3qry";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig file ];
|
|
|
|
propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ interface for GStreamer";
|
|
homepage = http://gstreamer.freedesktop.org/bindings/cplusplus.html;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ romildo ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|