diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-02-27 12:42:22 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-02-27 12:42:22 +0100 |
commit | 8779987bba029535d3dc00f1aacf59281fdd34f0 (patch) | |
tree | 7a6d616d45367d508f94c3593b1ce5c7053c33f5 /gnu/packages/ssh.scm | |
parent | 1885bb0c08e943a2e0e37c5c0a83473c8af904d0 (diff) | |
parent | a6d9f8837b118e2126e4b8a19bf48b524229a15c (diff) | |
download | guix-8779987bba029535d3dc00f1aacf59281fdd34f0.tar guix-8779987bba029535d3dc00f1aacf59281fdd34f0.tar.gz |
Merge branch 'master' into python-tests
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r-- | gnu/packages/ssh.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 9d1d9cc0a9..be4d2a7ade 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -56,15 +56,15 @@ (define-public libssh (package (name "libssh") - (version "0.7.3") + (version "0.7.4") (source (origin (method url-fetch) (uri (string-append - "https://red.libssh.org/attachments/download/195/libssh-" + "https://red.libssh.org/attachments/download/210/libssh-" version ".tar.xz")) (sha256 (base32 - "165g49i4kmm3bfsjm0n8hm21kadv79g9yjqyq09138jxanz4dvr6")))) + "03bcp9ksqp0s1pmwfmzhcknvkxay5k0mjzzxp3rjlifbng1vxq9r")))) (build-system cmake-build-system) (arguments '(#:configure-flags '("-DWITH_GCRYPT=ON") @@ -79,7 +79,7 @@ client and server implementations. With libssh, you can remotely execute programs, transfer files, and use a secure and transparent tunnel for your remote applications.") - (home-page "http://www.libssh.org") + (home-page "https://www.libssh.org") (license license:lgpl2.1+))) (define-public libssh2 |