updating openldap to 2.6.1

This commit is contained in:
Jean-François GUILLAUME 2022-04-20 15:39:22 +02:00
parent acf8c2a710
commit 2604289f2f
GPG key ID: 38751DAE145EFB5A

View file

@ -25,36 +25,18 @@
(define-public openldap
(package
(name "openldap")
(version "2.6.0")
(version "2.6.1")
(source (origin
(method url-fetch)
(uri (list
(string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz")
))
(sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" ))
(sha256 ( base32 "1wz6f3g3bbqgbbxs20zlappmmhapqbl791c0waibhz9djsk6wmwx" ))
)
)
(build-system gnu-build-system)
(inputs `(
("argon2", argon2)
("cyrus-sasl", cyrus-sasl)
("libevent", libevent)
("libgcrypt", libgcrypt)
("libltdl", libltdl)
("lz4", lz4)
("openssl", openssl)
("perl", perl)
("snappy", snappy)
("unixodbc", unixodbc)
("wiredtiger", wiredtiger)
("zlib", zlib)
))
(native-inputs `(
("bdb", bdb)
("groff", groff)
("libtool", libtool)
("pkg-config", pkg-config)
))
(inputs (list argon2 cyrus-sasl libevent libgcrypt libltdl lz4 openssl perl snappy unixodbc wiredtiger zlib))
(native-inputs (list bdb groff libtool pkg-config))
(arguments '(
; this is needed because the make check does not work inside guix
#:tests? #f
@ -129,6 +111,22 @@
)
)
(define-public openldap-2.6.0
(package
(inherit openldap)
(name "openldap")
(version "2.6.0")
(source (origin
(method url-fetch)
(uri (list
(string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz")
))
(sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" ))
)
)
)
)
(define-public nss-pam-ldapd
(package
(name "nss-pam-ldapd")