gnu: datefudge: Add a backup source URI.
This tarball disappeared upstream. * gnu/packages/time.scm (datefudge)[source]: Add backup URI.master
parent
9eee025bf8
commit
d080368cb5
|
@ -465,6 +465,8 @@ datetime type.")
|
||||||
(define-public datefudge
|
(define-public datefudge
|
||||||
(package
|
(package
|
||||||
(name "datefudge")
|
(name "datefudge")
|
||||||
|
;; XXX When updating this package, make sure to do something about the
|
||||||
|
;; archive.org backup URI.
|
||||||
(version "1.23")
|
(version "1.23")
|
||||||
(source (origin
|
(source (origin
|
||||||
;; Source code is available from
|
;; Source code is available from
|
||||||
|
@ -472,9 +474,17 @@ datetime type.")
|
||||||
;; for bootstrapping reasons, we do not rely on 'git-fetch' here
|
;; for bootstrapping reasons, we do not rely on 'git-fetch' here
|
||||||
;; (since Git -> GnuTLS -> datefudge).
|
;; (since Git -> GnuTLS -> datefudge).
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (list
|
||||||
"mirror://debian/pool/main/d/datefudge/datefudge_"
|
;; For some reason this tarball was removed from Debian's
|
||||||
version ".tar.xz"))
|
;; servers. Remove this archive.org URL when updating
|
||||||
|
;; datefudge, or add the new tarball to archive.org and
|
||||||
|
;; update the URL.
|
||||||
|
(string-append
|
||||||
|
"https://archive.org/download/datefudge_" version
|
||||||
|
".tar_202112/" "datefudge_" version ".tar.xz")
|
||||||
|
(string-append
|
||||||
|
"mirror://debian/pool/main/d/datefudge/datefudge_"
|
||||||
|
version ".tar.xz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ifnlb0mc8qc2kb5042pbz0ns6rwcb7201di8wyrsphl0yhnhxiv"))
|
"0ifnlb0mc8qc2kb5042pbz0ns6rwcb7201di8wyrsphl0yhnhxiv"))
|
||||||
|
|
Reference in New Issue