mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: bzip2: Use archived source and home-page URLs.
* gnu/packages/compression.scm (bzip2)[source, home-page]: Update URLs.
This commit is contained in:
parent
67d7c55cff
commit
7598b678fa
1 changed files with 5 additions and 3 deletions
|
@ -237,8 +237,10 @@ (define-public bzip2
|
||||||
(version "1.0.6")
|
(version "1.0.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://www.bzip.org/" version "/bzip2-"
|
;; XXX The bzip.org domain was allowed to expire.
|
||||||
version ".tar.gz"))
|
(uri (string-append "https://web.archive.org/web/20180624184806/"
|
||||||
|
"http://www.bzip.org/"
|
||||||
|
version "/bzip2-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1kfrc7f0ja9fdn6j1y6yir6li818npy6217hvr3wzmnmzhs8z152"))))
|
"1kfrc7f0ja9fdn6j1y6yir6li818npy6217hvr3wzmnmzhs8z152"))))
|
||||||
|
@ -316,7 +318,7 @@ (define-public bzip2
|
||||||
decompression.")
|
decompression.")
|
||||||
(license (license:non-copyleft "file://LICENSE"
|
(license (license:non-copyleft "file://LICENSE"
|
||||||
"See LICENSE in the distribution."))
|
"See LICENSE in the distribution."))
|
||||||
(home-page "http://www.bzip.org/")))
|
(home-page "https://web.archive.org/web/20180801004107/http://www.bzip.org/")))
|
||||||
|
|
||||||
(define-public lbzip2
|
(define-public lbzip2
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue