mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
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
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.2";
|
|
|
|
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 = "1mwyk3b19aq78mjhmrpc7qqs9flrykrn1j763g5wx546swc489xy";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
python json_glib
|
|
];
|
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|