mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 08:07:29 +01:00
gnu: Add curl-ssh.
* gnu/packages/curl.scm (curl-ssh): New hidden package. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
2d4fa647b7
commit
0faf5f1dd6
1 changed files with 13 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||
;;; Copyright © 2020 Dale Mellor <guix-devel-0brg6b@rdmp.org>
|
||||
;;; Copyright © 2021 Jean-Baptiste Volatier <jbv@pm.me>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -46,6 +47,7 @@ (define-module (gnu packages curl)
|
|||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages ssh)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
@ -152,6 +154,17 @@ (define-public curl-minimal
|
|||
(name "curl-minimal")
|
||||
(inputs (alist-delete "openldap" (package-inputs curl))))))
|
||||
|
||||
(define-public curl-ssh
|
||||
(package/inherit curl
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments curl)
|
||||
((#:configure-flags flags)
|
||||
`(cons "--with-libssh2" ,flags))))
|
||||
(inputs
|
||||
`(("libssh2" ,libssh2)
|
||||
,@(package-inputs curl)))
|
||||
(properties `((hidden? . #t)))))
|
||||
|
||||
(define-public curl-7.77.0
|
||||
(package
|
||||
(inherit curl)
|
||||
|
|
Loading…
Reference in a new issue