nixpkgs/pkgs/development/libraries/appstream-glib/default.nix

95 lines
1.6 KiB
Nix
Raw Normal View History

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 {
name = "appstream-glib-0.7.15";
2017-12-20 05:32:16 +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
src = fetchFromGitHub {
owner = "hughsie";
repo = "appstream-glib";
2019-08-27 20:46:43 +01:00
rev = stdenv.lib.replaceStrings [ "." "-" ] [ "_" "_" ] name;
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;
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
doCheck = false; # fails at least 1 test
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;
maintainers = with maintainers; [ lethalman matthewbauer ];
2015-04-10 16:02:57 +01:00
};
}