fwupd: bump

This commit is contained in:
Shea Levy
2017-09-02 20:00:20 -04:00
parent eedffc5277
commit 35f89413e2
6 changed files with 158 additions and 37 deletions
@@ -1,25 +1,25 @@
{ stdenv, fetchFromGitHub, pkgconfig, gettext, gtk3, intltool, glib
, gtk_doc, autoconf, automake, libtool, libarchive, libyaml
, gtk_doc, autoconf, automake, libtool, libarchive
, gobjectIntrospection, sqlite, libsoup, gcab, attr, acl, docbook_xsl
, libuuid, json_glib, autoconf-archive, gperf
, libuuid, json_glib, autoconf-archive, meson, gperf, ninja
}:
stdenv.mkDerivation rec {
name = "appstream-glib-0.6.13";
name = "appstream-glib-0.7.2";
src = fetchFromGitHub {
owner = "hughsie";
repo = "appstream-glib";
rev = stdenv.lib.replaceStrings ["." "-"] ["_" "_"] name;
sha256 = "1csscszdp1imd0hiib6xx7mfylfl1r64xmma14p5jq1yprprpa9h";
sha256 = "1jvwfida12d2snc8p9lpbpqzrixw2naaiwfmsrldwkrxsj3i19pl";
};
nativeBuildInputs = [ autoconf automake libtool pkgconfig intltool autoconf-archive ];
nativeBuildInputs = [ meson pkgconfig ninja ];
buildInputs = [ glib gtk_doc gettext sqlite libsoup
gcab attr acl docbook_xsl libuuid json_glib
libarchive libyaml gobjectIntrospection gperf ];
libarchive gobjectIntrospection gperf ];
propagatedBuildInputs = [ gtk3 ];
configureScript = "./autogen.sh";
mesonFlags = [ "-Denable-rpm=false" "-Denable-stemmer=false" "-Denable-dep11=false" ];
meta = with stdenv.lib; {
description = "Objects and helper methods to read and write AppStream metadata";