lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

appstream: 0.9.5 -> 0.10.6

ndowens 9017f363 798623fd

+16 -8
+16 -8
pkgs/development/libraries/appstream/default.nix
··· 1 - { stdenv, fetchurl, cmake, pkgconfig, gettext, intltool 1 + { stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, intltool 2 2 , xmlto, docbook_xsl, docbook_xml_dtd_45 3 3 , glib, xapian, libxml2, libyaml, gobjectIntrospection 4 + , pcre, itstool 4 5 }: 5 6 6 - stdenv.mkDerivation { 7 - name = "appstream-0.9.5"; 7 + stdenv.mkDerivation rec { 8 + name = "appstream-${version}"; 9 + version = "0.10.6"; 8 10 9 - src = fetchurl { 10 - url = "https://github.com/ximion/appstream/archive/APPSTREAM_0_8_0.tar.gz"; 11 - sha256 = "16a3b38avrwyl1pp8jdgfjv6cd5mccbmk4asni92l40y5r0xfycr"; 11 + src = fetchFromGitHub { 12 + owner = "ximion"; 13 + repo = "appstream"; 14 + rev = "APPSTREAM_0_10_6"; 15 + sha256 = "1fg7zxx2qhkyj7fmcpwbf80b72d16kyi8dadi111kf00sgzfbiyy"; 12 16 }; 13 17 14 18 nativeBuildInputs = [ 15 19 cmake pkgconfig gettext intltool 16 20 xmlto docbook_xsl docbook_xml_dtd_45 17 - gobjectIntrospection 21 + gobjectIntrospection itstool 18 22 ]; 19 23 20 - buildInputs = [ glib xapian libxml2 libyaml ]; 24 + buildInputs = [ pcre glib xapian libxml2 libyaml ]; 21 25 26 + cmakeFlags = '' 27 + -DSTEMMING=off 28 + ''; 29 + 22 30 meta = with stdenv.lib; { 23 31 description = "Software metadata handling library"; 24 32 homepage = "http://www.freedesktop.org/wiki/Distributions/AppStream/Software/";