mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 14:18:38 +02:00
updating openldap to 2.6.1
This commit is contained in:
parent
acf8c2a710
commit
2604289f2f
1 changed files with 20 additions and 22 deletions
|
@ -25,36 +25,18 @@
|
||||||
(define-public openldap
|
(define-public openldap
|
||||||
(package
|
(package
|
||||||
(name "openldap")
|
(name "openldap")
|
||||||
(version "2.6.0")
|
(version "2.6.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (list
|
(uri (list
|
||||||
(string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz")
|
(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)
|
(build-system gnu-build-system)
|
||||||
(inputs `(
|
(inputs (list argon2 cyrus-sasl libevent libgcrypt libltdl lz4 openssl perl snappy unixodbc wiredtiger zlib))
|
||||||
("argon2", argon2)
|
(native-inputs (list bdb groff libtool pkg-config))
|
||||||
("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)
|
|
||||||
))
|
|
||||||
(arguments '(
|
(arguments '(
|
||||||
; this is needed because the make check does not work inside guix
|
; this is needed because the make check does not work inside guix
|
||||||
#:tests? #f
|
#: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
|
(define-public nss-pam-ldapd
|
||||||
(package
|
(package
|
||||||
(name "nss-pam-ldapd")
|
(name "nss-pam-ldapd")
|
||||||
|
|
Loading…
Add table
Reference in a new issue