guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: gnu: openldap-for-linphone: Hide it.


From: guix-commits
Subject: branch core-updates updated: gnu: openldap-for-linphone: Hide it.
Date: Mon, 24 Apr 2023 03:57:39 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 794e8880b9 gnu: openldap-for-linphone: Hide it.
794e8880b9 is described below

commit 794e8880b98b3639ef409e1cef723c05c79c4695
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Apr 24 09:56:32 2023 +0200

    gnu: openldap-for-linphone: Hide it.
    
    We don't want this to show up when searching for "openldap".
    
    * gnu/packages/openldap.scm (openldap-for-linphone): Wrap in HIDDEN-PACKAGE
    and add a comment.
---
 gnu/packages/openldap.scm | 29 ++++++++++++++++-------------
 1 file changed, 16 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm
index 2dcda009e6..92480b13f8 100644
--- a/gnu/packages/openldap.scm
+++ b/gnu/packages/openldap.scm
@@ -113,20 +113,23 @@
     (license openldap2.8)
     (home-page "https://www.openldap.org/";)))
 
+;; This is an incompatible fork of openldap that adds types needed for
+;; liblinphone.
 (define-public openldap-for-linphone
-  (package
-    (inherit openldap)
-    (name "openldap")
-    (version "2.6.4")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url 
"https://gitlab.linphone.org/BC/public/external/openldap/";)
-                    (commit "8a885896a3fb88098d970ab96316c0b7f18367b8")))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1yd3cnngr5z3nymnml8fynspxgdzap7y7glp601nbkdj67wyg0k8"))))))
+  (hidden-package
+   (package
+     (inherit openldap)
+     (name "openldap")
+     (version "2.6.4")
+     (source (origin
+               (method git-fetch)
+               (uri (git-reference
+                     (url 
"https://gitlab.linphone.org/BC/public/external/openldap/";)
+                     (commit "8a885896a3fb88098d970ab96316c0b7f18367b8")))
+               (file-name (git-file-name name version))
+               (sha256
+                (base32
+                 "1yd3cnngr5z3nymnml8fynspxgdzap7y7glp601nbkdj67wyg0k8")))))))
 
 (define-public nss-pam-ldapd
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]