2015-12-05 10:58:06 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
|
|
|
|
, python, gobjectIntrospection
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-09 18:19:41 +01:00
|
|
|
name = "gst-validate-1.8.2";
|
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";
|
2016-07-09 18:19:41 +01:00
|
|
|
sha256 = "33c5b585c5ca1659fe6c09fdf02e45d8132c0d386b405bf527b14ab481a0bafe";
|
2015-12-05 10:58:06 +00:00
|
|
|
};
|
|
|
|
|
2016-04-24 13:39:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
|
2015-12-05 10:58:06 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig gobjectIntrospection
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
python
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|
|
|
|
|