mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add lmdbxx.
* gnu/packages/databases.scm (lmdbxx): New variable.
This commit is contained in:
parent
999f1f0bb4
commit
659bc4362d
1 changed files with 30 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
|
||||
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
|
||||
;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -2106,6 +2107,35 @@ (define-public lmdb
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue