diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-10-20 13:00:01 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-20 14:00:11 +0200 |
commit | 10f2ae01c46ded2ea4d7ba2201609a5882408278 (patch) | |
tree | 837dacb84e0513bf9a421319059a85e8bd082306 /gnu | |
parent | 849af4ae1ba6d4d0b3da3d47fc29ce33b532e4da (diff) | |
download | guix-10f2ae01c46ded2ea4d7ba2201609a5882408278.tar guix-10f2ae01c46ded2ea4d7ba2201609a5882408278.tar.gz |
gnu: dav1d: Remove defunct mirror URL.
* gnu/packages/video.scm (dav1d)[source](uri): Remove bz2 tarball origin.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/video.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 1e67a7f281..0b21251f46 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3550,13 +3550,8 @@ transitions, and effects and then export your film to many common formats.") (source (origin (method url-fetch) - (uri (list ;; The canonical download site. - (string-append "https://downloads.videolan.org/pub/videolan/" - "dav1d/" version "/dav1d-" version ".tar.xz") - - ;; Auto-generated tarballs from the Git repo? - (string-append "https://code.videolan.org/videolan/dav1d/-/" - "archive/" version "/dav1d-" version ".tar.bz2"))) + (uri (string-append "https://downloads.videolan.org/pub/videolan" + "/dav1d/" version "/dav1d-" version ".tar.xz")) (sha256 (base32 "1586k439fm8db9lsxxywm34iqibj5mw4xrppr4g2wqr0hjlhcbxn")))) |