nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix

34 lines
793 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
, python, gobjectIntrospection, json-glib
}:
stdenv.mkDerivation rec {
2018-03-30 20:15:11 +01:00
name = "gst-validate-1.14.0";
meta = {
description = "Integration testing infrastructure for the GStreamer framework";
2017-09-16 20:28:31 +01:00
homepage = https://gstreamer.freedesktop.org;
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
src = fetchurl {
url = "${meta.homepage}/src/gst-validate/${name}.tar.xz";
2018-03-30 20:15:11 +01:00
sha256 = "1pzzxqkv1spjrzpzpazdm2h4s2wk7gg5gag8nxj5v2gjfyzhiprk";
};
outputs = [ "out" "dev" ];
2016-04-24 13:39:30 +01:00
nativeBuildInputs = [
pkgconfig gobjectIntrospection
];
buildInputs = [
python json-glib
];
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
enableParallelBuilding = true;
}