2015-12-05 10:58:06 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
|
2016-11-22 10:00:36 +00:00
|
|
|
, python, gobjectIntrospection, json_glib
|
2015-12-05 10:58:06 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-07 13:03:36 +00:00
|
|
|
name = "gst-validate-1.12.3";
|
2015-12-05 10:58:06 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Integration testing infrastructure for the GStreamer framework";
|
2017-09-16 19:28:31 +00:00
|
|
|
homepage = https://gstreamer.freedesktop.org;
|
2015-12-05 10:58:06 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gst-validate/${name}.tar.xz";
|
2017-12-11 09:21:20 +00:00
|
|
|
sha256 = "17j812pkzgbyn9ys3b305yl5mrf9nbm8whwj4iqdskr742fr8fai";
|
2015-12-05 10:58:06 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 12:39:30 +00:00
|
|
|
|
2015-12-05 10:58:06 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig gobjectIntrospection
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2016-11-22 10:00:36 +00:00
|
|
|
python json_glib
|
2015-12-05 10:58:06 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|