mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: xterm: Download source over HTTPS.
* gnu/packages/xorg.scm (xterm)[source]: Use HTTPS.
This commit is contained in:
parent
664821f1d7
commit
0d14986814
1 changed files with 10 additions and 10 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue