diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-18 18:11:02 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-18 18:11:02 +0100 |
commit | 381c540b937a5e6e8b7007c9c0271ee816bf5417 (patch) | |
tree | 27191f25f05bbfd48dbf47bbd29f72cb7521482f /gnu/packages/ssh.scm | |
parent | 49689377a3bab8da08436455ca14a0432fa0e95f (diff) | |
parent | f401b1e9934a6594d6d7586922aa987e0b24839b (diff) | |
download | patches-381c540b937a5e6e8b7007c9c0271ee816bf5417.tar patches-381c540b937a5e6e8b7007c9c0271ee816bf5417.tar.gz |
Merge branch 'master' into core-updates
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 f475eeab09..0148b25a16 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -179,22 +179,22 @@ The connection layer multiplexes many different concurrent channels over the authenticated connection and allows tunneling of login sessions and TCP-forwarding. It provides a flow control service for these channels. Additionally, various channel-specific options can be negotiated.") - (license (license:bsd-style "file://LICENSE" + (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")) (home-page "http://www.openssh.org/"))) (define-public guile-ssh (package (name "guile-ssh") - (version "0.7.1") + (version "0.7.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/artyom-poptsov/libguile-ssh.git") - (commit "e216e1d78bf93a9753ea813f930cac5e68e52180"))) + (commit (string-append "v" version)))) (sha256 (base32 - "1sbxhmynmpwfjwb3dp6lrc3cxi5kffqmb6klhx7wnkgqxvs61lsw")))) + "1wcv10xv7ayrhrg77zyng6flknnlkzhni24nf8x9nic00zha8znk")))) (build-system gnu-build-system) (arguments '(#:phases (alist-cons-after |