2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, gettext
|
2018-02-21 18:58:22 -08:00
|
|
|
, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt
|
2018-12-02 03:41:15 -08:00
|
|
|
, libstemmer, glib, xapian, libxml2, libyaml, gobject-introspection
|
2020-09-03 18:08:18 -07:00
|
|
|
, pcre, itstool, gperf, vala, lmdb, libsoup
|
2015-01-21 23:02:54 -08:00
|
|
|
}:
|
|
|
|
|
2017-03-10 16:49:01 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "appstream";
|
2020-12-01 08:04:33 -08:00
|
|
|
version = "0.13.1";
|
2020-09-03 18:08:18 -07:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
2016-05-06 10:03:44 -07:00
|
|
|
|
2017-03-10 16:49:01 -08:00
|
|
|
src = fetchFromGitHub {
|
2018-02-21 18:58:22 -08:00
|
|
|
owner = "ximion";
|
|
|
|
repo = "appstream";
|
2020-09-03 18:08:18 -07:00
|
|
|
rev = "v${version}";
|
2020-12-01 08:04:33 -08:00
|
|
|
sha256 = "16nxaw4fx78maldi3kvr8fiwzhmy5276wd4x2fxny16zzf01098j";
|
2016-05-06 10:03:44 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2018-02-21 18:58:22 -08:00
|
|
|
meson ninja pkgconfig gettext
|
|
|
|
libxslt xmlto docbook_xsl docbook_xml_dtd_45
|
2018-12-02 03:41:15 -08:00
|
|
|
gobject-introspection itstool vala
|
2016-05-06 10:03:44 -07:00
|
|
|
];
|
|
|
|
|
2020-09-03 18:08:18 -07:00
|
|
|
buildInputs = [ libstemmer pcre glib xapian libxml2 libyaml gperf lmdb libsoup ];
|
2015-01-21 23:02:54 -08:00
|
|
|
|
2018-02-21 18:58:22 -08: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-17 16:33:23 -07:00
|
|
|
"-Dvapi=true"
|
2018-02-21 18:58:22 -08:00
|
|
|
];
|
2017-10-26 14:26:26 -07:00
|
|
|
|
2015-01-21 23:02:54 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Software metadata handling library";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Distributions/AppStream/";
|
2018-02-21 18:58:22 -08:00
|
|
|
longDescription = ''
|
2015-01-21 23:02:54 -08: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;
|
2020-08-14 02:21:00 -07:00
|
|
|
platforms = platforms.unix;
|
2015-01-21 23:02:54 -08:00
|
|
|
};
|
|
|
|
}
|