me
/
guix
Archived
1
0
Fork 0

gnu: fet: Add alternative URL for older source tarballs.

* gnu/packages/education.scm (fet)[source]: Add "old/" URL.
master
Ludovic Courtès 2021-10-07 12:16:32 +02:00
parent 4ddcd0e206
commit e85ccc8b50
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 2 deletions

View File

@ -657,8 +657,10 @@ Portuguese, Spanish and Italian.")
(source
(origin
(method url-fetch)
(uri (string-append "https://www.lalescu.ro/liviu/fet/download/"
"fet-" version ".tar.bz2"))
(uri (let ((directory "https://www.lalescu.ro/liviu/fet/download/")
(base (string-append "fet-" version ".tar.bz2")))
(list (string-append directory base)
(string-append directory "old/" base))))
(sha256
(base32 "16m20vbhv8i7saxqb731bhds1f86d6x1f935j3ivg357805fqzll"))))
(build-system gnu-build-system)