mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
7a6185d9a1
Fixes CVE-2016-9445, CVE-2016-9446, CVE-2016-9447.
35 lines
795 B
Nix
35 lines
795 B
Nix
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
|
|
, python, gobjectIntrospection, json_glib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-validate-1.10.1";
|
|
|
|
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 = "0x9z0kizi44swsrx8mdc6xlmn9dksdfifchp5h6liibp7qd6gbh7";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
python json_glib
|
|
];
|
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|
|
|