all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: nixo <anothersms@gmail.com>
To: 39619@debbugs.gnu.org, 39622@debbugs.gnu.org
Cc: nixo <nicolo@nixo.xyz>
Subject: [bug#39622] [PATCH 3/4] gnu: Add lmdbxx.
Date: Sat, 15 Feb 2020 22:30:29 +0100	[thread overview]
Message-ID: <20200215213030.21121-3-nicolo@nixo.xyz> (raw)
In-Reply-To: <20200215213030.21121-1-nicolo@nixo.xyz>

* gnu/packages/databases.scm (lmdbxx): New variable.
---
 gnu/packages/databases.scm | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 587d993918..58ad64418e 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2105,6 +2105,35 @@ multiple cores.  The size of each database is limited only by the size of the
 virtual address space — not physical RAM.")
     (license license:openldap2.8)))
 
+(define-public lmdbxx
+  (package
+    (name "lmdbxx")
+    (version "0.9.14.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/drycpp/lmdbxx.git")
+                    (commit (string-append version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1jmb9wg2iqag6ps3z71bh72ymbcjrb6clwlkgrqf1sy80qwvlsn6"))))
+    (arguments
+     `(#:make-flags (list
+                     (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (inputs `(("lmdb" ,lmdb)))
+    (build-system gnu-build-system)
+    (home-page "http://lmdbxx.sourceforge.net")
+    (synopsis "C++11 wrapper for the LMDB embedded B+ tree database library")
+    (description "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the
+@code{LMDB} embedded database library, offering both an error-checked
+procedural interface and an object-oriented resource interface with RAII
+semantics.")
+    (license license:unlicense)))
+
 (define-public libpqxx
   (package
     (name "libpqxx")
@@ -2122,7 +2151,7 @@ virtual address space — not physical RAM.")
      `(("python" ,python-2)))
     (inputs `(("postgresql" ,postgresql)))
     (arguments
-     `(#:tests? #f   ; # FAIL:  1
+     `(#:tests? #f                      ; # FAIL:  1
        #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'fix-sed-command
-- 
2.25.0

  parent reply	other threads:[~2020-02-15 21:31 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-15 21:23 [bug#39619] [PATCH 0/4] Add nheko matrix client nixo
     [not found] ` <handler.39619.B.158180183921379.ack@debbugs.gnu.org>
2020-02-15 21:30   ` [bug#39619] [PATCH 1/4] gnu: Add mtxclient nixo
2020-02-15 21:30     ` [bug#39619] [PATCH 2/4] gnu: Add tweeny nixo
     [not found]       ` <handler.39621.B.158180225922123.ack@debbugs.gnu.org>
2020-02-15 21:34         ` bug#39621: Acknowledgement ([PATCH 2/4] gnu: Add tweeny.) Nicolò Balzarotti
2020-02-15 21:30     ` nixo [this message]
     [not found]       ` <handler.39622.B.158180225922130.ack@debbugs.gnu.org>
2020-02-15 21:34         ` bug#39622: Acknowledgement ([PATCH 3/4] gnu: Add lmdbxx.) Nicolò Balzarotti
2020-02-15 21:30     ` [bug#39623] [PATCH 4/4] gnu: Add nheko nixo
     [not found]       ` <handler.39623.B.158180226322189.ack@debbugs.gnu.org>
2020-02-15 21:34         ` bug#39623: Acknowledgement ([PATCH 4/4] gnu: Add nheko.) Nicolò Balzarotti
     [not found]     ` <handler.39620.B.158180225622091.ack@debbugs.gnu.org>
2020-02-15 21:34       ` bug#39620: Acknowledgement ([PATCH 1/4] gnu: Add mtxclient.) Nicolò Balzarotti
2020-02-16  0:09   ` [bug#39619] Acknowledgement ([PATCH 0/4] Add nheko matrix client) Nicolò Balzarotti
2020-02-18  9:22   ` [bug#39619] [v2] Re: bug#39619: " Nicolò Balzarotti
2020-02-21 16:58     ` Nicolas Goaziou
2020-02-21 21:57       ` Nicolò Balzarotti
2020-02-22 23:48         ` bug#39619: " Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200215213030.21121-3-nicolo@nixo.xyz \
    --to=anothersms@gmail.com \
    --cc=39619@debbugs.gnu.org \
    --cc=39622@debbugs.gnu.org \
    --cc=nicolo@nixo.xyz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.