75 lines
1.4 KiB
Nix
75 lines
1.4 KiB
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, docbook_xml_dtd_43
|
||
|
, docbook_xsl
|
||
|
, glib
|
||
|
, gobject-introspection
|
||
|
, gtk-doc
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkgconfig
|
||
|
, python3
|
||
|
, shared-mime-info
|
||
|
, nixosTests
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "libxmlb";
|
||
|
version = "0.1.15";
|
||
|
|
||
|
outputs = [ "out" "lib" "dev" "devdoc" "installedTests" ];
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "hughsie";
|
||
|
repo = "libxmlb";
|
||
|
rev = version;
|
||
|
sha256 = "1mb73pnfwqc4mm0lm16yfn0lj495h8hcciprb2v6wgy3ifnnjxib";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
./installed-tests-path.patch
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
docbook_xml_dtd_43
|
||
|
docbook_xsl
|
||
|
gobject-introspection
|
||
|
gtk-doc
|
||
|
meson
|
||
|
ninja
|
||
|
pkgconfig
|
||
|
(python3.withPackages (pkgs: with pkgs; [ setuptools ]))
|
||
|
shared-mime-info
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
glib
|
||
|
];
|
||
|
|
||
|
mesonFlags = [
|
||
|
"--libexecdir=${placeholder "out"}/libexec"
|
||
|
"-Dgtkdoc=true"
|
||
|
"-Dinstalled_test_prefix=${placeholder "installedTests"}"
|
||
|
];
|
||
|
|
||
|
preCheck = ''
|
||
|
export XDG_DATA_DIRS=$XDG_DATA_DIRS:${shared-mime-info}/share
|
||
|
'';
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
passthru = {
|
||
|
tests = {
|
||
|
installed-tests = nixosTests.installed-tests.libxmlb;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
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.linux;
|
||
|
};
|
||
|
}
|