2019-08-27 20:46:43 +01:00
|
|
|
{ stdenv
|
|
|
|
, 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
|
|
|
|
, pkgconfig
|
|
|
|
, pngquant
|
2015-04-10 16:02:57 +01:00
|
|
|
}:
|
2017-10-12 22:37:56 +01: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 16:02:57 +01:00
|
|
|
|
2016-06-16 20:14:36 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hughsie";
|
|
|
|
repo = "appstream-glib";
|
2019-08-27 20:46:43 +01:00
|
|
|
rev = stdenv.lib.replaceStrings [ "." "-" ] [ "_" "_" ] name;
|
2019-02-28 16:49:21 +00:00
|
|
|
sha256 = "16cqs1s7nqc551sipgaxbbzwap1km0n12s4lcgfbxzzl9bcjbp9m";
|
2015-04-10 16:02:57 +01:00
|
|
|
};
|
|
|
|
|
2017-12-20 05:32:16 +00:00
|
|
|
nativeBuildInputs = [
|
2019-08-27 20:46:43 +01:00
|
|
|
docbook_xml_dtd_42
|
|
|
|
docbook_xsl
|
|
|
|
gettext
|
|
|
|
gobject-introspection
|
|
|
|
gperf
|
|
|
|
gtk-doc
|
|
|
|
libxslt
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
2017-12-20 05:32:16 +00:00
|
|
|
];
|
2019-08-27 20:46:43 +01:00
|
|
|
|
2017-12-20 05:32:16 +00:00
|
|
|
buildInputs = [
|
2019-08-27 20:46:43 +01:00
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
gdk-pixbuf
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
json-glib
|
|
|
|
libarchive
|
|
|
|
libsoup
|
|
|
|
libuuid
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
glib
|
|
|
|
gdk-pixbuf
|
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 16:02:57 +01:00
|
|
|
|
2018-04-25 04:20:18 +01: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 16:02:57 +01: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 18:30:17 +01:00
|
|
|
platforms = platforms.unix;
|
2016-06-16 20:14:36 +01:00
|
|
|
maintainers = with maintainers; [ lethalman matthewbauer ];
|
2015-04-10 16:02:57 +01:00
|
|
|
};
|
|
|
|
}
|