mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: ldb: Update to 1.4.0.
* gnu/packages/samba.scm (ldb): Update to 1.4.0. [inputs]: Add LMDB.
This commit is contained in:
parent
8bf7f741e9
commit
4ee30d6aa2
1 changed files with 4 additions and 3 deletions
|
@ -342,14 +342,14 @@ (define-public tevent
|
||||||
(define-public ldb
|
(define-public ldb
|
||||||
(package
|
(package
|
||||||
(name "ldb")
|
(name "ldb")
|
||||||
(version "1.3.3")
|
(version "1.4.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://www.samba.org/ftp/ldb/ldb-"
|
(uri (string-append "https://www.samba.org/ftp/ldb/ldb-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14gsrm7dvyjpbpnc60z75j6fz2p187abm2h353lq95kx2bv70c1b"))))
|
"1d591ny4j4s409s2afjv4fn7inqlclr0zlyclw3619rkbaixlzm8"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -372,7 +372,8 @@ (define-public ldb
|
||||||
`(("talloc" ,talloc)
|
`(("talloc" ,talloc)
|
||||||
("tdb" ,tdb)))
|
("tdb" ,tdb)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("popt" ,popt)
|
`(("lmdb" ,lmdb)
|
||||||
|
("popt" ,popt)
|
||||||
("tevent" ,tevent)))
|
("tevent" ,tevent)))
|
||||||
(synopsis "LDAP-like embedded database")
|
(synopsis "LDAP-like embedded database")
|
||||||
(home-page "https://ldb.samba.org/")
|
(home-page "https://ldb.samba.org/")
|
||||||
|
|
Loading…
Reference in a new issue