mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, intltool
|
|
, xmlto, docbook_xsl, docbook_xml_dtd_45
|
|
, glib, xapian, libxml2, libyaml, gobjectIntrospection
|
|
, pcre, itstool
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "appstream-${version}";
|
|
version = "0.10.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ximion";
|
|
repo = "appstream";
|
|
rev = "APPSTREAM_0_10_6";
|
|
sha256 = "1fg7zxx2qhkyj7fmcpwbf80b72d16kyi8dadi111kf00sgzfbiyy";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake pkgconfig gettext intltool
|
|
xmlto docbook_xsl docbook_xml_dtd_45
|
|
gobjectIntrospection itstool
|
|
];
|
|
|
|
buildInputs = [ pcre glib xapian libxml2 libyaml ];
|
|
|
|
cmakeFlags = ''
|
|
-DSTEMMING=off
|
|
'';
|
|
|
|
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.linux;
|
|
};
|
|
}
|