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

96 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-08-27 19:46:43 +00:00
, fetchFromGitHub
, substituteAll
, docbook_xml_dtd_42
, docbook_xsl
, fontconfig
, freetype
, gdk-pixbuf
, gettext
, glib
, gobject-introspection
, gperf
, gtk-doc
, gtk3
, json-glib
, libarchive
, curl
2019-08-27 19:46:43 +00:00
, libuuid
, libxslt
, meson
, ninja
, pkg-config
2019-08-27 19:46:43 +00:00
, pngquant
2015-04-10 15:02:57 +00:00
}:
2017-10-12 21:37:56 +00:00
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "appstream-glib";
2022-11-07 06:14:06 +00:00
version = "0.8.2";
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 15:02:57 +00:00
src = fetchFromGitHub {
owner = "hughsie";
repo = "appstream-glib";
2021-08-20 03:23:18 +00:00
rev = "${lib.replaceStrings ["-"] ["_"] pname}_${lib.replaceStrings ["."] ["_"] version}";
2022-11-07 06:14:06 +00:00
sha256 = "sha256-3QFiOJ38talA0GGL++n+DaA/AN7l4LOZQ7BJV6o8ius=";
2015-04-10 15:02:57 +00:00
};
2017-12-20 05:32:16 +00:00
nativeBuildInputs = [
2019-08-27 19:46:43 +00:00
docbook_xml_dtd_42
docbook_xsl
gettext
gobject-introspection
gperf
gtk-doc
libxslt
meson
ninja
pkg-config
2017-12-20 05:32:16 +00:00
];
2019-08-27 19:46:43 +00:00
2017-12-20 05:32:16 +00:00
buildInputs = [
2019-08-27 19:46:43 +00:00
fontconfig
freetype
gdk-pixbuf
glib
gtk3
json-glib
libarchive
curl
2019-08-27 19:46:43 +00:00
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 15:02:57 +00:00
doCheck = false; # fails at least 1 test
postInstall = ''
moveToOutput "share/installed-tests" "$installedTests"
'';
meta = with lib; {
2015-04-10 15:02:57 +00:00
description = "Objects and helper methods to read and write AppStream metadata";
2020-03-04 15:32:05 +00:00
homepage = "https://people.freedesktop.org/~hughsient/appstream-glib/";
2017-12-20 05:32:16 +00:00
license = licenses.lgpl2Plus;
2019-07-22 17:30:17 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ matthewbauer ];
2015-04-10 15:02:57 +00:00
};
}