nixpkgs/pkgs/development/libraries/appstream/default.nix

55 lines
1.5 KiB
Nix
Raw Normal View History

2021-02-11 09:20:34 +00:00
{ lib, stdenv, substituteAll, fetchFromGitHub, meson, ninja, pkg-config, gettext
2018-02-22 02:58:22 +00:00
, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt
, libstemmer, glib, xapian, libxml2, libyaml, gobject-introspection
2020-09-04 01:08:18 +00:00
, pcre, itstool, gperf, vala, lmdb, libsoup
2015-01-22 07:02:54 +00:00
}:
2017-03-11 00:49:01 +00:00
stdenv.mkDerivation rec {
pname = "appstream";
2021-02-11 09:20:34 +00:00
version = "0.14.0";
2020-09-04 01:08:18 +00:00
outputs = [ "out" "dev" ];
2016-05-06 17:03:44 +00:00
2017-03-11 00:49:01 +00:00
src = fetchFromGitHub {
2018-02-22 02:58:22 +00:00
owner = "ximion";
repo = "appstream";
2020-09-04 01:08:18 +00:00
rev = "v${version}";
2021-02-11 09:20:34 +00:00
sha256 = "sha256-iYqmQ1/58t3ZdJTxYLDc5jkTG1lMBtQWMFFsYsszH9Q=";
2016-05-06 17:03:44 +00:00
};
2021-02-11 09:20:34 +00:00
patches = [
# Fix hardcoded paths
(substituteAll {
src = ./fix-paths.patch;
libstemmer_includedir = "${lib.getDev libstemmer}/include";
})
];
2016-05-06 17:03:44 +00:00
nativeBuildInputs = [
meson ninja pkg-config gettext
2018-02-22 02:58:22 +00:00
libxslt xmlto docbook_xsl docbook_xml_dtd_45
gobject-introspection itstool vala
2016-05-06 17:03:44 +00:00
];
2020-09-04 01:08:18 +00:00
buildInputs = [ libstemmer pcre glib xapian libxml2 libyaml gperf lmdb libsoup ];
2015-01-22 07:02:54 +00:00
2018-02-22 02:58:22 +00:00
mesonFlags = [
"-Dapidocs=false"
"-Ddocs=false"
2018-07-17 23:33:23 +00:00
"-Dvapi=true"
2018-02-22 02:58:22 +00:00
];
2017-10-26 21:26:26 +00:00
meta = with lib; {
2015-01-22 07:02:54 +00:00
description = "Software metadata handling library";
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;
2020-08-14 09:21:00 +00:00
platforms = platforms.unix;
2015-01-22 07:02:54 +00:00
};
}