diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2017-04-22 01:18:07 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-22 01:25:22 +0200 |
| commit | befbaebf72d43ac71404065551dc613d6e5a303b (patch) | |
| tree | 9cdf4977b02106f4705c2c484e6c3006c61a1177 /gnu/packages/ssh.scm | |
| parent | 1fe958d62ac33ef5e6da26ccc9213f4dae2ee1ae (diff) | |
gnu: Add guile2.2-ssh.
* gnu/packages/ssh.scm (guile2.2-ssh): New variable.
Diffstat (limited to 'gnu/packages/ssh.scm')
| -rw-r--r-- | gnu/packages/ssh.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 9c18a7ab398..135083ad220 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm | |||
| @@ -52,7 +52,8 @@ | |||
| 52 | #:use-module (guix download) | 52 | #:use-module (guix download) |
| 53 | #:use-module (guix git-download) | 53 | #:use-module (guix git-download) |
| 54 | #:use-module ((guix licenses) #:prefix license:) | 54 | #:use-module ((guix licenses) #:prefix license:) |
| 55 | #:use-module (guix packages)) | 55 | #:use-module (guix packages) |
| 56 | #:use-module (srfi srfi-1)) | ||
| 56 | 57 | ||
| 57 | (define-public libssh | 58 | (define-public libssh |
| 58 | (package | 59 | (package |
| @@ -265,6 +266,27 @@ programs written in GNU Guile interpreter. It is a wrapper to the underlying | |||
| 265 | libssh library.") | 266 | libssh library.") |
| 266 | (license license:gpl3+))) | 267 | (license license:gpl3+))) |
| 267 | 268 | ||
| 269 | (define-public guile2.2-ssh | ||
| 270 | ;; This is a snapshot of a unofficial copy of Guile-SSH, which hopefully | ||
| 271 | ;; reflects the upcoming release well enough. | ||
| 272 | (let ((commit "926a0843626f89e3db02d01a6b01cc1f0d9cefcf") | ||
| 273 | (revision "0")) | ||
| 274 | (package | ||
| 275 | (inherit guile-ssh) | ||
| 276 | (name "guile2.2-ssh") | ||
| 277 | (version (string-append "0.10.2." revision "." (string-take commit 7))) | ||
| 278 | (source (origin | ||
| 279 | (method git-fetch) | ||
| 280 | (uri (git-reference | ||
| 281 | (url "https://notabug.org/civodul/guile-ssh/") | ||
| 282 | (commit commit))) | ||
| 283 | (file-name (git-file-name name version)) | ||
| 284 | (sha256 | ||
| 285 | (base32 | ||
| 286 | "0hf28macq8d1w05g0xy2lw1s5vzmcrixh7m43x7qvvdd31c998ip")))) | ||
| 287 | (inputs `(("guile" ,guile-2.2) | ||
| 288 | ,@(alist-delete "guile" (package-inputs guile-ssh))))))) | ||
| 289 | |||
| 268 | (define-public corkscrew | 290 | (define-public corkscrew |
| 269 | (package | 291 | (package |
| 270 | (name "corkscrew") | 292 | (name "corkscrew") |
