diff options
author | Jean-Baptiste Volatier <jbv@pm.me> | 2021-07-22 15:55:43 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-07-28 16:05:32 +0300 |
commit | 0faf5f1dd6f673762eb4576b3f2e17250120ab66 (patch) | |
tree | f707bf7e8adeccf9da2d1559aca9f25391a0eaa3 | |
parent | 2d4fa647b7df48cd9fce394e7c9f38bb11971280 (diff) | |
download | guix-0faf5f1dd6f673762eb4576b3f2e17250120ab66.tar.gz guix-0faf5f1dd6f673762eb4576b3f2e17250120ab66.zip |
gnu: Add curl-ssh.
* gnu/packages/curl.scm (curl-ssh): New hidden package.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/curl.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index d368c4140e..e6f1bb0c41 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -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 @@ #: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 @@ tunneling, and so on.") (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) |