diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 4721782..55e8281 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -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")