2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv
|
2019-08-27 21:46:43 +02:00
|
|
|
, fetchFromGitHub
|
|
|
|
, substituteAll
|
|
|
|
, docbook_xml_dtd_42
|
|
|
|
, docbook_xsl
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
|
|
|
, gdk-pixbuf
|
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, gobject-introspection
|
|
|
|
, gperf
|
|
|
|
, gtk-doc
|
|
|
|
, gtk3
|
|
|
|
, json-glib
|
|
|
|
, libarchive
|
|
|
|
, libsoup
|
|
|
|
, libuuid
|
|
|
|
, libxslt
|
|
|
|
, meson
|
|
|
|
, ninja
|
2021-01-19 07:50:56 +01:00
|
|
|
, pkg-config
|
2019-08-27 21:46:43 +02:00
|
|
|
, pngquant
|
2015-04-10 17:02:57 +02:00
|
|
|
}:
|
2017-10-12 23:37:56 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-09-27 10:17:58 +02:00
|
|
|
name = "appstream-glib-0.7.18";
|
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";
|
2021-01-21 18:00:13 +01:00
|
|
|
rev = lib.replaceStrings [ "." "-" ] [ "_" "_" ] name;
|
2020-09-27 10:17:58 +02:00
|
|
|
sha256 = "12s7d3nqjs1fldnppbg2mkjg4280f3h8yzj3q1hiz3chh1w0vjbx";
|
2015-04-10 17:02:57 +02:00
|
|
|
};
|
|
|
|
|
2017-12-20 06:32:16 +01:00
|
|
|
nativeBuildInputs = [
|
2019-08-27 21:46:43 +02:00
|
|
|
docbook_xml_dtd_42
|
|
|
|
docbook_xsl
|
|
|
|
gettext
|
|
|
|
gobject-introspection
|
|
|
|
gperf
|
|
|
|
gtk-doc
|
|
|
|
libxslt
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 07:50:56 +01:00
|
|
|
pkg-config
|
2017-12-20 06:32:16 +01:00
|
|
|
];
|
2019-08-27 21:46:43 +02:00
|
|
|
|
2017-12-20 06:32:16 +01:00
|
|
|
buildInputs = [
|
2019-08-27 21:46:43 +02:00
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
gdk-pixbuf
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
json-glib
|
|
|
|
libarchive
|
|
|
|
libsoup
|
|
|
|
libuuid
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
glib
|
|
|
|
gdk-pixbuf
|
2017-12-20 06:32:16 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./paths.patch;
|
2019-02-28 17:49:21 +01:00
|
|
|
pngquant = "${pngquant}/bin/pngquant";
|
2017-12-20 06:32:16 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2015-04-10 17:02:57 +02:00
|
|
|
description = "Objects and helper methods to read and write AppStream metadata";
|
2020-03-04 16:32:05 +01:00
|
|
|
homepage = "https://people.freedesktop.org/~hughsient/appstream-glib/";
|
2017-12-20 06:32:16 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2019-07-22 19:30:17 +02:00
|
|
|
platforms = platforms.unix;
|
2021-05-07 15:35:21 +02:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
2015-04-10 17:02:57 +02:00
|
|
|
};
|
|
|
|
}
|