diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-16 23:13:54 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-17 03:20:19 +0100 |
commit | 21f5de6d32a7d0e75ec2df69dc753a75a15657cd (patch) | |
tree | 8fb9ace3330354acc495a855c5312cdb4c78b3f7 /gnu | |
parent | 63b148f70fa1292a4983fcc787792f7ff517b9f4 (diff) |
gnu: openssh: Don't use NAME in source URI.
* gnu/packages/ssh.scm (openssh)[source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ssh.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 8acc7ce2ed..7ea871e581 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -133,7 +133,7 @@ a server that supports the SSH-2 protocol.") (source (origin (method url-fetch) (uri (string-append "mirror://openbsd/OpenSSH/portable/" - name "-" version ".tar.gz")) + "openssh-" version ".tar.gz")) (sha256 (base32 "0s7xh4s0qcipnjh9ls5blxcpvhyd116z9dxn3q1yi64lwrwki55x")))) |