guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: curl: Use hidden-package for curl's libssh2.


From: guix-commits
Subject: 01/01: gnu: curl: Use hidden-package for curl's libssh2.
Date: Thu, 21 Mar 2019 16:35:43 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit b47e5a6cc3f7730efffb510846d023200583f9f0
Author: Leo Famulari <address@hidden>
Date:   Thu Mar 21 16:31:33 2019 -0400

    gnu: curl: Use hidden-package for curl's libssh2.
    
    This is a followup to commits c1f4e6491cecc5d121ef371a8fb2aa0a07030d36
    and af8f7eb4f2a664c2d0fb3faabaf2e80c72993ef6.
    
    * gnu/packages/curl.scm (libssh2-1.8.0): Use hidden-package.
---
 gnu/packages/curl.scm | 29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index 041853c..9f2c27d 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -50,20 +50,21 @@
 
 ;; XXX A hidden special obsolete libssh2 for temporary use in the curl package.
 ;; <https://bugs.gnu.org/34927>
-(define libssh2-1.8.0
-  (package
-    (inherit libssh2)
-    (version "1.8.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://www.libssh2.org/download/libssh2-";
-                    version ".tar.gz"))
-               (sha256
-                (base32
-                 "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr"))
-               (patches
-                (search-patches 
"libssh2-fix-build-failure-with-gcrypt.patch"))))))
+(define-public libssh2-1.8.0
+  (hidden-package
+    (package
+      (inherit libssh2)
+      (version "1.8.0")
+      (source (origin
+                (method url-fetch)
+                (uri (string-append
+                      "https://www.libssh2.org/download/libssh2-";
+                      version ".tar.gz"))
+                (sha256
+                 (base32
+                  "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr"))
+                (patches
+                 (search-patches 
"libssh2-fix-build-failure-with-gcrypt.patch")))))))
 
 (define-public curl
   (package



reply via email to

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