2017-12-20 06:32:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub, substituteAll, pkgconfig, gettext, gtk3, glib
|
2018-02-25 03:23:58 +01:00
|
|
|
, gtk-doc, libarchive, gobjectIntrospection, libxslt, pngquant
|
2017-12-20 06:32:16 +01:00
|
|
|
, sqlite, libsoup, gcab, attr, acl, docbook_xsl, docbook_xml_dtd_42
|
2018-02-25 03:23:58 +01:00
|
|
|
, libuuid, json-glib, meson, gperf, ninja
|
2015-04-10 17:02:57 +02:00
|
|
|
}:
|
2017-10-12 23:37:56 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-08 20:05:11 +02:00
|
|
|
name = "appstream-glib-0.7.9";
|
2017-12-20 06:32:16 +01:00
|
|
|
|
2018-03-14 21:15:31 +01:00
|
|
|
outputs = [ "out" "dev" "man" "installedTests" ];
|
2017-12-20 06:32:16 +01:00
|
|
|
outputBin = "dev";
|
2015-04-10 17:02:57 +02:00
|
|
|
|
2016-06-16 21:14:36 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hughsie";
|
|
|
|
repo = "appstream-glib";
|
|
|
|
rev = stdenv.lib.replaceStrings ["." "-"] ["_" "_"] name;
|
2018-06-08 20:05:11 +02:00
|
|
|
sha256 = "10b32qw7iy0v1jvmf18wqgs8d1cpy52zm5rzw0wv421n90qiyidk";
|
2015-04-10 17:02:57 +02:00
|
|
|
};
|
|
|
|
|
2017-12-20 06:32:16 +01:00
|
|
|
nativeBuildInputs = [
|
2018-02-25 03:23:58 +01:00
|
|
|
meson pkgconfig ninja gtk-doc libxslt docbook_xsl docbook_xml_dtd_42
|
2017-12-20 06:32:16 +01:00
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
glib gettext sqlite libsoup
|
2018-02-25 03:23:58 +01:00
|
|
|
gcab attr acl libuuid json-glib
|
2017-12-20 06:32:16 +01:00
|
|
|
libarchive gobjectIntrospection gperf
|
|
|
|
];
|
2017-02-27 14:29:58 +01:00
|
|
|
propagatedBuildInputs = [ gtk3 ];
|
2017-12-20 06:32:16 +01:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./paths.patch;
|
|
|
|
pngquant= "${pngquant}/bin/pngquant";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Drpm=false"
|
|
|
|
"-Dstemmer=false"
|
|
|
|
"-Ddep11=false"
|
|
|
|
];
|
2015-04-10 17:02:57 +02:00
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails at least 1 test
|
|
|
|
|
2018-03-14 21:15:31 +01:00
|
|
|
postInstall = ''
|
|
|
|
moveToOutput "share/installed-tests" "$installedTests"
|
|
|
|
'';
|
|
|
|
|
2015-04-10 17:02:57 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Objects and helper methods to read and write AppStream metadata";
|
2017-12-20 06:32:16 +01:00
|
|
|
homepage = https://people.freedesktop.org/~hughsient/appstream-glib/;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-06-16 21:14:36 +02:00
|
|
|
maintainers = with maintainers; [ lethalman matthewbauer ];
|
2015-04-10 17:02:57 +02:00
|
|
|
};
|
|
|
|
}
|