2019-10-02 10:04:39 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, gstreamer
|
|
|
|
, gst-plugins-base
|
|
|
|
, python
|
|
|
|
, gobject-introspection
|
|
|
|
, json-glib
|
2015-12-05 02:58:06 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gst-validate";
|
2019-12-05 09:24:24 -08:00
|
|
|
version = "1.16.2";
|
2015-12-05 02:58:06 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-02 09:59:16 -07:00
|
|
|
url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
|
2019-12-05 09:24:24 -08:00
|
|
|
sha256 = "1jpfrzg3yc6kp66bgq3jy14xsj3x71mk2zh0k16yf0326awwqqa8";
|
2015-12-05 02:58:06 -08:00
|
|
|
};
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 05:39:30 -07:00
|
|
|
|
2015-12-05 02:58:06 -08:00
|
|
|
nativeBuildInputs = [
|
2019-10-02 10:04:39 -07:00
|
|
|
pkgconfig
|
|
|
|
gobject-introspection
|
2015-12-05 02:58:06 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-10-02 10:04:39 -07:00
|
|
|
python
|
|
|
|
json-glib
|
2015-12-05 02:58:06 -08:00
|
|
|
];
|
|
|
|
|
2019-10-02 10:04:39 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
gstreamer
|
|
|
|
gst-plugins-base
|
2019-01-20 17:48:04 -08:00
|
|
|
];
|
2019-10-02 10:04:39 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Integration testing infrastructure for the GStreamer framework";
|
|
|
|
homepage = "https://gstreamer.freedesktop.org";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2015-12-05 02:58:06 -08:00
|
|
|
}
|