5a322693f4
Tests failed with: ERROR:../src/xb-self-test.c:462:xb_builder_ensure_watch_source_func: assertion failed (error == NULL) cannot process file of type application/x-zerosize (g-io-error-quark, 15) See: https://hydra.nixos.org/build/88774485
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib, libuuid, gobject-introspection, gtk-doc, shared-mime-info, python3, docbook_xsl, docbook_xml_dtd_43 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libxmlb-${version}";
|
|
version = "0.1.6";
|
|
|
|
outputs = [ "out" "lib" "dev" "devdoc" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hughsie";
|
|
repo = "libxmlb";
|
|
rev = version;
|
|
sha256 = "194slg11lp2i8zvc4a3zkzshps7qglzmrabp5k0r92rampx4dbwa";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja python3 pkgconfig gobject-introspection gtk-doc shared-mime-info docbook_xsl docbook_xml_dtd_43 ];
|
|
|
|
buildInputs = [ glib libuuid ];
|
|
|
|
mesonFlags = [
|
|
"--libexecdir=${placeholder "out"}/libexec"
|
|
"-Dgtkdoc=true"
|
|
];
|
|
|
|
preCheck = ''
|
|
export XDG_DATA_DIRS=$XDG_DATA_DIRS:${shared-mime-info}/share
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library to help create and query binary XML blobs";
|
|
homepage = https://github.com/hughsie/libxmlb;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|