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

93 lines
1.6 KiB
Nix
Raw Permalink Normal View History

{ lib
, stdenv
, substituteAll
, fetchFromGitHub
, meson
, ninja
, pkg-config
, gettext
, xmlto
, docbook-xsl-nons
, docbook_xml_dtd_45
, libxslt
, libstemmer
, glib
, xapian
, libxml2
, libyaml
, gobject-introspection
, pcre
, itstool
, gperf
, vala
, lmdb
, curl
2015-01-22 07:02:54 +00:00
}:
2017-03-11 00:49:01 +00:00
stdenv.mkDerivation rec {
pname = "appstream";
2021-06-24 12:11:32 +00:00
version = "0.14.4";
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 {
owner = "ximion";
repo = "appstream";
rev = "v${version}";
2021-06-24 12:11:32 +00:00
sha256 = "sha256-DJXCw50f+8c58bJw6xx0ECfkc9/KcWaeA+ne2zmTyhg=";
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
libxslt
xmlto
docbook-xsl-nons
docbook_xml_dtd_45
gobject-introspection
itstool
vala
2016-05-06 17:03:44 +00:00
];
buildInputs = [
libstemmer
pcre
glib
xapian
libxml2
libyaml
gperf
lmdb
curl
];
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;
platforms = platforms.unix;
2015-01-22 07:02:54 +00:00
};
}