gst_all_1.gst-validate: 1.16.0 -> 1.16.1

This commit is contained in:
Will Dietz 2019-10-02 12:04:39 -05:00 committed by Jan Tojnar
parent 56a60bf216
commit 5b1920fd06
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,39 +1,43 @@
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
, python, gobject-introspection, json-glib
{ stdenv
, fetchurl
, pkgconfig
, gstreamer
, gst-plugins-base
, python
, gobject-introspection
, json-glib
}:
stdenv.mkDerivation rec {
pname = "gst-validate";
version = "1.16.0";
meta = {
description = "Integration testing infrastructure for the GStreamer framework";
homepage = https://gstreamer.freedesktop.org;
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
version = "1.16.1";
src = fetchurl {
url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
sha256 = "1jfnd0g9hmdbqfxsx96yc9vpf1w6m33hqwrr6lj4i83kl54awcck";
sha256 = "1698arvmpb0cvyi8ll1brvs51vs7i3f3fw19iswh8xhj5adrn1vz";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [
pkgconfig gobject-introspection
pkgconfig
gobject-introspection
];
buildInputs = [
python json-glib
python
json-glib
];
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
enableParallelBuilding = true;
mesonFlags = [
# Enables all features, so that we know when new dependencies are necessary.
"-Dauto_features=enabled"
propagatedBuildInputs = [
gstreamer
gst-plugins-base
];
meta = with stdenv.lib; {
description = "Integration testing infrastructure for the GStreamer framework";
homepage = "https://gstreamer.freedesktop.org";
license = licenses.lgpl2Plus;
platforms = platforms.unix;
};
}