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-02-26 15:21:52 +00:00
|
|
|
name = "gst-validate-1.10.4";
|
2015-12-05 10:58:06 +00:00
|
|
|
|
|
|
|
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";
|
2017-02-26 15:21:52 +00:00
|
|
|
sha256 = "0g6px08x4kq5xqlbyxvxn6cm9b1s1gfvhkmlrmvw9afccjzh1775";
|
2015-12-05 10:58:06 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 13:39:30 +01: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;
|
|
|
|
}
|