guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: gnu: Add lmdbxx.


From: guix-commits
Subject: 03/04: gnu: Add lmdbxx.
Date: Sat, 22 Feb 2020 18:53:16 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 659bc4362d97c1e668ec05ec7f4a0fb09bcd440a
Author: nixo <address@hidden>
AuthorDate: Sat Feb 15 21:04:07 2020 +0100

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

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 0f023e0..c21ca5a 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -39,6 +39,7 @@
 ;;; Copyright © 2019 Pierre Langlois <address@hidden>
 ;;; Copyright © 2019 Guillaume Le Vaillant <address@hidden>
 ;;; Copyright © 2020 Pierre Neidhardt <address@hidden>
+;;; Copyright © 2020 Nicolò Balzarotti <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2106,6 +2107,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 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))))
+    (build-system gnu-build-system)
+    (inputs `(("lmdb" ,lmdb)))
+    (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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]