Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

102 lines
1.7 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
replaceVars,
docbook_xml_dtd_42,
docbook_xsl,
fontconfig,
freetype,
gdk-pixbuf,
gettext,
glib,
gobject-introspection,
gperf,
gtk-doc,
gtk3,
json-glib,
libarchive,
curl,
libuuid,
libxslt,
meson,
ninja,
pkg-config,
pngquant,
}:
stdenv.mkDerivation rec {
pname = "appstream-glib";
version = "0.8.2";
outputs = [
"out"
"dev"
"man"
"installedTests"
];
outputBin = "dev";
src = fetchFromGitHub {
owner = "hughsie";
repo = "appstream-glib";
rev = "${lib.replaceStrings [ "-" ] [ "_" ] pname}_${lib.replaceStrings [ "." ] [ "_" ] version}";
sha256 = "sha256-3QFiOJ38talA0GGL++n+DaA/AN7l4LOZQ7BJV6o8ius=";
};
nativeBuildInputs = [
docbook_xml_dtd_42
docbook_xsl
gettext
gobject-introspection
gperf
gtk-doc
libxslt
meson
ninja
pkg-config
];
buildInputs = [
fontconfig
freetype
gdk-pixbuf
glib
gtk3
json-glib
libarchive
curl
libuuid
];
propagatedBuildInputs = [
glib
gdk-pixbuf
];
patches = [
(replaceVars ./paths.patch {
pngquant = "${pngquant}/bin/pngquant";
})
];
mesonFlags = [
"-Drpm=false"
"-Dstemmer=false"
"-Ddep11=false"
];
doCheck = false; # fails at least 1 test
postInstall = ''
moveToOutput "share/installed-tests" "$installedTests"
'';
meta = with lib; {
description = "Objects and helper methods to read and write AppStream metadata";
homepage = "https://people.freedesktop.org/~hughsient/appstream-glib/";
license = licenses.lgpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ matthewbauer ];
};
}