2019-10-02 18:04:39 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, gstreamer
|
|
|
|
, gst-plugins-base
|
2019-12-25 06:28:58 +00:00
|
|
|
, python3
|
2019-10-02 18:04:39 +01:00
|
|
|
, gobject-introspection
|
|
|
|
, json-glib
|
2015-12-05 10:58:06 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gst-validate";
|
2019-12-05 17:24:24 +00:00
|
|
|
version = "1.16.2";
|
2015-12-05 10:58:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-02 17:59:16 +01:00
|
|
|
url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
|
2019-12-05 17:24:24 +00:00
|
|
|
sha256 = "1jpfrzg3yc6kp66bgq3jy14xsj3x71mk2zh0k16yf0326awwqqa8";
|
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 = [
|
2019-10-02 18:04:39 +01:00
|
|
|
pkgconfig
|
|
|
|
gobject-introspection
|
2015-12-05 10:58:06 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-12-25 06:28:58 +00:00
|
|
|
python3
|
2019-10-02 18:04:39 +01:00
|
|
|
json-glib
|
2015-12-05 10:58:06 +00:00
|
|
|
];
|
|
|
|
|
2019-10-02 18:04:39 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
gstreamer
|
|
|
|
gst-plugins-base
|
2019-01-21 01:48:04 +00:00
|
|
|
];
|
2019-10-02 18:04:39 +01: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 10:58:06 +00:00
|
|
|
}
|