mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
bf9c36fb62
Fixes build with recent glib. Also clean up.
93 lines
1.6 KiB
Nix
93 lines
1.6 KiB
Nix
{ 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
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "appstream";
|
|
version = "0.14.3";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ximion";
|
|
repo = "appstream";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-wCQR+4/F5lVqWHHcH/WS4irBGRivz3c1imasyLDIZIs=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix hardcoded paths
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
libstemmer_includedir = "${lib.getDev libstemmer}/include";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
libxslt
|
|
xmlto
|
|
docbook-xsl-nons
|
|
docbook_xml_dtd_45
|
|
gobject-introspection
|
|
itstool
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
libstemmer
|
|
pcre
|
|
glib
|
|
xapian
|
|
libxml2
|
|
libyaml
|
|
gperf
|
|
lmdb
|
|
curl
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dapidocs=false"
|
|
"-Ddocs=false"
|
|
"-Dvapi=true"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Software metadata handling library";
|
|
homepage = "https://www.freedesktop.org/wiki/Distributions/AppStream/";
|
|
longDescription = ''
|
|
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;
|
|
};
|
|
}
|