9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, gettext
|
|
, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt
|
|
, libstemmer, glib, xapian, libxml2, libyaml, gobject-introspection
|
|
, pcre, itstool, gperf, vala, lmdb, libsoup
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "appstream";
|
|
version = "0.13.1";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ximion";
|
|
repo = "appstream";
|
|
rev = "v${version}";
|
|
sha256 = "16nxaw4fx78maldi3kvr8fiwzhmy5276wd4x2fxny16zzf01098j";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkg-config gettext
|
|
libxslt xmlto docbook_xsl docbook_xml_dtd_45
|
|
gobject-introspection itstool vala
|
|
];
|
|
|
|
buildInputs = [ libstemmer pcre glib xapian libxml2 libyaml gperf lmdb libsoup ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace meson.build \
|
|
--replace /usr/include ${libstemmer}/include
|
|
|
|
substituteInPlace data/meson.build \
|
|
--replace /etc $out/etc
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Dapidocs=false"
|
|
"-Ddocs=false"
|
|
"-Dvapi=true"
|
|
];
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|