mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
libxmlb: init at 0.1.5
This commit is contained in:
parent
3dbbd9f8c2
commit
a6f7842008
2 changed files with 36 additions and 0 deletions
34
pkgs/development/libraries/libxmlb/default.nix
Normal file
34
pkgs/development/libraries/libxmlb/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ 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.5";
|
||||
|
||||
outputs = [ "out" "lib" "dev" "devdoc" ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hughsie";
|
||||
repo = "libxmlb";
|
||||
rev = version;
|
||||
sha256 = "037j9fwkzsy3765gl2grkrmbxrfs67wlai213qbgsa5xn6fb8y68";
|
||||
};
|
||||
|
||||
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"
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -11461,6 +11461,8 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
libxmlb = callPackage ../development/libraries/libxmlb { };
|
||||
|
||||
libxmlxx = callPackage ../development/libraries/libxmlxx { };
|
||||
libxmlxx3 = callPackage ../development/libraries/libxmlxx/v3.nix { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue