gnu: xterm: Download source over HTTPS.

* gnu/packages/xorg.scm (xterm)[source]: Use HTTPS.
This commit is contained in:
Tobias Geerinckx-Rice 2020-11-16 02:15:27 +01:00
parent 664821f1d7
commit 0d14986814
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -6111,16 +6111,16 @@ (define-public xterm
(package
(name "xterm")
(version "361")
(source (origin
(method url-fetch)
(uri (list
(string-append "http://invisible-mirror.net/archives/xterm/"
"xterm-" version ".tgz")
(string-append "ftp://ftp.invisible-island.net/xterm/"
"xterm-" version ".tgz")))
(sha256
(base32
"0gv27akkfb796aww1snq3c2sxmi8vajgfxk83g60awp4slh0yqc5"))))
(source
(origin
(method url-fetch)
(uri (list
(string-append "https://invisible-mirror.net/archives/xterm/"
"xterm-" version ".tgz")
(string-append "ftp://ftp.invisible-island.net/xterm/"
"xterm-" version ".tgz")))
(sha256
(base32 "0gv27akkfb796aww1snq3c2sxmi8vajgfxk83g60awp4slh0yqc5"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--enable-wide-chars" "--enable-load-vt-fonts"