2018-02-22 02:58:22 +00:00
|
|
|
{ stdenv, fetchpatch, fetchFromGitHub, meson, ninja, pkgconfig, gettext
|
|
|
|
, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt
|
|
|
|
, libstemmer, glib, xapian, libxml2, libyaml, gobjectIntrospection
|
2018-07-18 00:33:23 +01:00
|
|
|
, pcre, itstool, vala
|
2015-01-22 07:02:54 +00:00
|
|
|
}:
|
|
|
|
|
2017-03-11 00:49:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "appstream-${version}";
|
2018-02-22 02:58:22 +00:00
|
|
|
version = "0.11.8";
|
2016-05-06 18:03:44 +01:00
|
|
|
|
2017-03-11 00:49:01 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-02-22 02:58:22 +00:00
|
|
|
owner = "ximion";
|
|
|
|
repo = "appstream";
|
|
|
|
rev = "APPSTREAM_${stdenv.lib.replaceStrings ["."] ["_"] version}";
|
|
|
|
sha256 = "07vzz57g1p5byj2jfg17y5n3il0g07d9wkiynzwra71mcxar1p08";
|
2016-05-06 18:03:44 +01:00
|
|
|
};
|
|
|
|
|
2018-02-22 02:58:22 +00:00
|
|
|
patches = [
|
|
|
|
# drop this in version 0.11.9 and above
|
|
|
|
(fetchpatch {
|
|
|
|
name = "define-location-and-soname.patch";
|
|
|
|
url = "https://github.com/ximion/appstream/commit/3e58f9c9.patch";
|
|
|
|
sha256 = "1ffgbdfg80yq5vahjrvdd4f8xsp32ksm9vyasfmc7hzhx294s78w";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-05-06 18:03:44 +01:00
|
|
|
nativeBuildInputs = [
|
2018-02-22 02:58:22 +00:00
|
|
|
meson ninja pkgconfig gettext
|
|
|
|
libxslt xmlto docbook_xsl docbook_xml_dtd_45
|
2018-07-18 00:33:23 +01:00
|
|
|
gobjectIntrospection itstool vala
|
2016-05-06 18:03:44 +01:00
|
|
|
];
|
|
|
|
|
2018-02-22 02:58:22 +00:00
|
|
|
buildInputs = [ libstemmer pcre glib xapian libxml2 libyaml ];
|
2015-01-22 07:02:54 +00:00
|
|
|
|
2018-02-22 02:58:22 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace meson.build \
|
|
|
|
--replace /usr/include ${libstemmer}/include
|
|
|
|
|
|
|
|
substituteInPlace data/meson.build \
|
|
|
|
--replace /etc $out/etc
|
|
|
|
'';
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dapidocs=false"
|
|
|
|
"-Ddocs=false"
|
2018-07-18 00:33:23 +01:00
|
|
|
"-Dvapi=true"
|
2018-02-22 02:58:22 +00:00
|
|
|
];
|
2017-10-26 22:26:26 +01:00
|
|
|
|
2015-01-22 07:02:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Software metadata handling library";
|
2017-10-26 22:26:26 +01:00
|
|
|
homepage = https://www.freedesktop.org/wiki/Distributions/AppStream/;
|
2018-02-22 02:58:22 +00:00
|
|
|
longDescription = ''
|
2015-01-22 07:02:54 +00:00
|
|
|
AppStream is a cross-distro effort for building Software-Center applications
|
|
|
|
and enhancing metadata provided by software components. It provides
|
|
|
|
specifications for meta-information which is shipped by upstream projects and
|
|
|
|
can be consumed by other software.
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|