mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: xterm: Download over HTTP by default.
* gnu/packages/xorg.scm (xterm)[source]: Add HTTP mirror URI.
This commit is contained in:
parent
f9c84cd495
commit
7e71d5666b
1 changed files with 5 additions and 2 deletions
|
@ -5784,8 +5784,11 @@ (define-public xterm
|
|||
(version "331")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "ftp://ftp.invisible-island.net/xterm/"
|
||||
"xterm-" version ".tgz"))
|
||||
(uri (list
|
||||
(string-append "http://invisible-mirror.net/archives/xterm/"
|
||||
name "-" version ".tgz")
|
||||
(string-append "ftp://ftp.invisible-island.net/xterm/"
|
||||
name "-" version ".tgz")))
|
||||
(sha256
|
||||
(base32
|
||||
"047gk58hvj64974sg259ss5gixj7pac6halmjfz4cc6r1yimds4s"))))
|
||||
|
|
Loading…
Reference in a new issue