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