mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: ir: Use archived tarball and home page.
* gnu/packages/audio.scm (ir)[source]: Use a list of archive mirrors. [home-page]: Link to an Internet Archive snapshot.
This commit is contained in:
parent
2df984f278
commit
c50f2af9f8
1 changed files with 12 additions and 4 deletions
|
@ -1178,9 +1178,15 @@ (define-public ir
|
||||||
(version "1.3.2")
|
(version "1.3.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
;; The original home-page is gone. Download the tarball from an
|
||||||
"http://factorial.hu/system/files/ir.lv2-"
|
;; archive mirror instead.
|
||||||
version ".tar.gz"))
|
(uri (list (string-append
|
||||||
|
"https://web.archive.org/web/20150803095032/"
|
||||||
|
"http://factorial.hu/system/files/ir.lv2-"
|
||||||
|
version ".tar.gz")
|
||||||
|
(string-append
|
||||||
|
"https://mirrors.kernel.org/gentoo/distfiles/ir.lv2-"
|
||||||
|
version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jh2z01l9m4ar7yz0n911df07dygc7n4cl59p7qdjbh0nvkm747g"))))
|
"1jh2z01l9m4ar7yz0n911df07dygc7n4cl59p7qdjbh0nvkm747g"))))
|
||||||
|
@ -1203,7 +1209,9 @@ (define-public ir
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "LV2_PATH")
|
(variable "LV2_PATH")
|
||||||
(files '("lib/lv2")))))
|
(files '("lib/lv2")))))
|
||||||
(home-page "http://factorial.hu/plugins/lv2/ir")
|
;; Link to an archived copy of the home-page since the original is gone.
|
||||||
|
(home-page (string-append "https://web.archive.org/web/20150803095032/"
|
||||||
|
"http://factorial.hu/plugins/lv2/ir"))
|
||||||
(synopsis "LV2 convolution reverb")
|
(synopsis "LV2 convolution reverb")
|
||||||
(description
|
(description
|
||||||
"IR is a low-latency, real-time, high performance signal convolver
|
"IR is a low-latency, real-time, high performance signal convolver
|
||||||
|
|
Loading…
Reference in a new issue