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