mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: curl: Use hidden-package for curl's libssh2.
This is a followup to commitsc1f4e6491c
andaf8f7eb4f2
. * gnu/packages/curl.scm (libssh2-1.8.0): Use hidden-package.
This commit is contained in:
parent
decea6eef0
commit
b47e5a6cc3
1 changed files with 15 additions and 14 deletions
|
@ -50,20 +50,21 @@ (define-module (gnu packages curl)
|
||||||
|
|
||||||
;; XXX A hidden special obsolete libssh2 for temporary use in the curl package.
|
;; XXX A hidden special obsolete libssh2 for temporary use in the curl package.
|
||||||
;; <https://bugs.gnu.org/34927>
|
;; <https://bugs.gnu.org/34927>
|
||||||
(define libssh2-1.8.0
|
(define-public libssh2-1.8.0
|
||||||
(package
|
(hidden-package
|
||||||
(inherit libssh2)
|
(package
|
||||||
(version "1.8.0")
|
(inherit libssh2)
|
||||||
(source (origin
|
(version "1.8.0")
|
||||||
(method url-fetch)
|
(source (origin
|
||||||
(uri (string-append
|
(method url-fetch)
|
||||||
"https://www.libssh2.org/download/libssh2-"
|
(uri (string-append
|
||||||
version ".tar.gz"))
|
"https://www.libssh2.org/download/libssh2-"
|
||||||
(sha256
|
version ".tar.gz"))
|
||||||
(base32
|
(sha256
|
||||||
"1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr"))
|
(base32
|
||||||
(patches
|
"1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr"))
|
||||||
(search-patches "libssh2-fix-build-failure-with-gcrypt.patch"))))))
|
(patches
|
||||||
|
(search-patches "libssh2-fix-build-failure-with-gcrypt.patch")))))))
|
||||||
|
|
||||||
(define-public curl
|
(define-public curl
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue