appstream: 0.8.0 -> 0.9.5

This commit is contained in:
Tobias Geerinckx-Rice 2016-05-06 19:03:44 +02:00
parent 237168d452
commit 5ac997b875
No known key found for this signature in database
GPG Key ID: 91CCDB9B48541B99

View File

@ -4,7 +4,20 @@
}:
stdenv.mkDerivation {
name = "appstream-0.8.0";
name = "appstream-0.9.5";
src = fetchurl {
url = "https://github.com/ximion/appstream/archive/APPSTREAM_0_8_0.tar.gz";
sha256 = "16a3b38avrwyl1pp8jdgfjv6cd5mccbmk4asni92l40y5r0xfycr";
};
nativeBuildInputs = [
cmake pkgconfig gettext intltool
xmlto docbook_xsl docbook_xml_dtd_45
gobjectIntrospection
];
buildInputs = [ glib xapian libxml2 libyaml ];
meta = with stdenv.lib; {
description = "Software metadata handling library";
@ -19,17 +32,4 @@ stdenv.mkDerivation {
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};
src = fetchurl {
url = "https://github.com/ximion/appstream/archive/APPSTREAM_0_8_0.tar.gz";
sha256 = "16a3b38avrwyl1pp8jdgfjv6cd5mccbmk4asni92l40y5r0xfycr";
};
nativeBuildInputs = [
cmake pkgconfig gettext intltool
xmlto docbook_xsl docbook_xml_dtd_45
gobjectIntrospection
];
buildInputs = [ glib xapian libxml2 libyaml ];
}