gnu: tcsh: Add alternate URL for old tarballs.
Reported by Alexander Vorobiev <alexander.vorobiev@gmail.com>. * gnu/packages/tcsh.scm (tcsh)[source]: Add alternate URL.
This commit is contained in:
parent
98b87b82be
commit
97c15a297d
|
@ -31,13 +31,17 @@
|
||||||
(name "tcsh")
|
(name "tcsh")
|
||||||
(version "6.18.01")
|
(version "6.18.01")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "ftp://ftp.astron.com/pub/tcsh/tcsh-"
|
;; Old tarballs are moved to old/.
|
||||||
version ".tar.gz"))
|
(uri (list (string-append "ftp://ftp.astron.com/pub/tcsh/"
|
||||||
(sha256
|
"tcsh-" version ".tar.gz")
|
||||||
(base32 "1a4z9kwgx1iqqzvv64si34m60gj34p7lp6rrcrb59s7ka5wa476q"))
|
(string-append "ftp://ftp.astron.com/pub/tcsh/"
|
||||||
(patches (list (search-patch "tcsh-fix-autotest.patch")))
|
"old/tcsh-" version ".tar.gz")))
|
||||||
(patch-flags '("-p0"))))
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1a4z9kwgx1iqqzvv64si34m60gj34p7lp6rrcrb59s7ka5wa476q"))
|
||||||
|
(patches (list (search-patch "tcsh-fix-autotest.patch")))
|
||||||
|
(patch-flags '("-p0"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
|
|
Loading…
Reference in New Issue