5e937b173d
See https://gstreamer.freedesktop.org/releases/1.10/#1.10.4. Fixes: * CVE-2017-5847 * CVE-2017-5848 cc #23072
34 lines
794 B
Nix
34 lines
794 B
Nix
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
|
|
, python, gobjectIntrospection, json_glib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-validate-1.10.4";
|
|
|
|
meta = {
|
|
description = "Integration testing infrastructure for the GStreamer framework";
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/src/gst-validate/${name}.tar.xz";
|
|
sha256 = "0g6px08x4kq5xqlbyxvxn6cm9b1s1gfvhkmlrmvw9afccjzh1775";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
python json_glib
|
|
];
|
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|