[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/86: gnu: Add libxmlb.
From: |
guix-commits |
Subject: |
06/86: gnu: Add libxmlb. |
Date: |
Sun, 5 Jul 2020 16:16:50 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 54b0af98d1972da4a240770943f9a0a7342cb548
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri May 22 07:06:27 2020 -0400
gnu: Add libxmlb.
* gnu/packages/xml.scm (libxmlb): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/xml.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 90181a1..b57d421 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -45,7 +45,10 @@
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
#:use-module (gnu packages curl)
+ #:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
#:use-module (gnu packages gnupg)
+ #:use-module (gnu packages gtk)
#:use-module (gnu packages java)
#:use-module (gnu packages nss)
#:use-module (gnu packages perl)
@@ -60,11 +63,45 @@
#:use-module (guix build-system ant)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system meson)
#:use-module (guix build-system perl)
#:use-module (guix build-system python)
#:use-module (gnu packages linux)
#:use-module (gnu packages pkg-config))
+(define-public libxmlb
+ (package
+ (name "libxmlb")
+ (version "0.1.15")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/hughsie/libxmlb.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1mb73pnfwqc4mm0lm16yfn0lj495h8hcciprb2v6wgy3ifnnjxib"))))
+ (build-system meson-build-system)
+ (arguments
+ `(#:glib-or-gtk? #t))
+ (native-inputs
+ `(("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("appstream-glib" ,appstream-glib)
+ ("glib" ,glib)))
+ (synopsis "Library to help create and query binary XML blobs")
+ (description "Libxmlb library takes XML source, and converts it to a
+structured binary representation with a deduplicated string table; where the
+strings have the NULs included. This allows an application to mmap the binary
+XML file, do an XPath query and return some strings without actually parsing
+the entire document.")
+ (home-page "https://github.com/hughsie/libxmlb")
+ (license license:lgpl2.1+)))
+
(define-public expat
(package
(name "expat")
- branch wip-desktop created (now 1d555bd), guix-commits, 2020/07/05
- 02/86: gnu: Add tepl., guix-commits, 2020/07/05
- 01/86: gnu: Add krb5-auth-dialog., guix-commits, 2020/07/05
- 03/86: gnu: Add libglib-testing., guix-commits, 2020/07/05
- 05/86: gnu: Add portablexdr., guix-commits, 2020/07/05
- 04/86: gnu: Add malcontent., guix-commits, 2020/07/05
- 07/86: gnu: Add gnome-music., guix-commits, 2020/07/05
- 06/86: gnu: Add libxmlb.,
guix-commits <=
- 08/86: gnu: Add gnome-photos., guix-commits, 2020/07/05
- 10/86: gnu: appstream-glib: Update package definition., guix-commits, 2020/07/05
- 11/86: gnu: at-spi2-core: Update package definition., guix-commits, 2020/07/05
- 12/86: gnu: at-spi2-atk: Update to 2.34.2., guix-commits, 2020/07/05
- 15/86: gnu: font-cantarell: Update package definition., guix-commits, 2020/07/05
- 13/86: gnu: atk: Update to 2.36.0., guix-commits, 2020/07/05
- 18/86: gnu: clutter-gst: Update package definition., guix-commits, 2020/07/05
- 09/86: gnu: adwaita-icon-theme: Update to 3.36.1., guix-commits, 2020/07/05
- 21/86: gnu: catch-framework2: Update to 2.3.0., guix-commits, 2020/07/05
- 16/86: gnu: clutter: Update to 1.26.4., guix-commits, 2020/07/05