3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/appstream-glib/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

2017-12-20 05:32:16 +00:00
{ stdenv, fetchFromGitHub, substituteAll, pkgconfig, gettext, gtk3, glib
, gtk-doc, libarchive, gobject-introspection, libxslt, pngquant
2018-08-21 14:00:47 +01:00
, sqlite, libsoup, attr, acl, docbook_xsl, docbook_xml_dtd_42
, libuuid, json-glib, meson, gperf, ninja
2015-04-10 16:02:57 +01:00
}:
2017-10-12 22:37:56 +01:00
stdenv.mkDerivation rec {
name = "appstream-glib-0.7.14";
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";
rev = stdenv.lib.replaceStrings ["." "-"] ["_" "_"] name;
sha256 = "1908ilra1l0m2a224azmj6p4yglzdwwk41rr6rhby959sgw3iaky";
2015-04-10 16:02:57 +01:00
};
2017-12-20 05:32:16 +00:00
nativeBuildInputs = [
meson pkgconfig ninja gtk-doc libxslt docbook_xsl docbook_xml_dtd_42
2017-12-20 05:32:16 +00:00
];
buildInputs = [
glib gettext sqlite libsoup
2018-08-21 14:00:47 +01:00
attr acl libuuid json-glib
libarchive gobject-introspection gperf
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;
pngquant= "${pngquant}/bin/pngquant";
})
];
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;
platforms = platforms.linux;
maintainers = with maintainers; [ lethalman matthewbauer ];
2015-04-10 16:02:57 +01:00
};
}