2015-12-05 11:58:06 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
|
2018-12-02 12:41:15 +01:00
|
|
|
, python, gobject-introspection, json-glib
|
2015-12-05 11:58:06 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-30 13:32:04 +02:00
|
|
|
name = "gst-validate-${version}";
|
2018-10-17 03:42:17 +02:00
|
|
|
version = "1.14.4";
|
2015-12-05 11:58:06 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Integration testing infrastructure for the GStreamer framework";
|
2017-09-16 21:28:31 +02:00
|
|
|
homepage = https://gstreamer.freedesktop.org;
|
2015-12-05 11:58:06 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gst-validate/${name}.tar.xz";
|
2018-10-17 03:42:17 +02:00
|
|
|
sha256 = "1ismv4i7ldi04swq76pcpd5apxqd52yify5hvlyan2yw9flwrp0q";
|
2015-12-05 11:58:06 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 14:39:30 +02:00
|
|
|
|
2015-12-05 11:58:06 +01:00
|
|
|
nativeBuildInputs = [
|
2018-12-02 12:41:15 +01:00
|
|
|
pkgconfig gobject-introspection
|
2015-12-05 11:58:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-25 03:23:58 +01:00
|
|
|
python json-glib
|
2015-12-05 11:58:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|