gnu: xterm: Download over HTTP by default.

* gnu/packages/xorg.scm (xterm)[source]: Add HTTP mirror URI.
master
Tobias Geerinckx-Rice 2018-01-10 02:15:13 +01:00
parent f9c84cd495
commit 7e71d5666b
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 5 additions and 2 deletions

View File

@ -5784,8 +5784,11 @@ to answer a question. Xmessage can also exit after a specified time.")
(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"))))