diff options
author | Leo Famulari <leo@famulari.name> | 2019-03-05 17:12:03 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2019-03-05 17:56:49 -0500 |
commit | 5f7c036cf66ea2f91e2f73bf136c6fe0336672eb (patch) | |
tree | 3fef41e7a92e410819dc9dfb7ce2a8653b4db6cb | |
parent | 5387971a9ecf511e1dbbac992af3808437e58d56 (diff) | |
download | guix-5f7c036cf66ea2f91e2f73bf136c6fe0336672eb.tar guix-5f7c036cf66ea2f91e2f73bf136c6fe0336672eb.tar.gz |
gnu: dav1d: Update to 0.2.0.
* gnu/packages/video.scm (dav1d): Update to 0.2.0.
[source]: Add alternate URL.
-rw-r--r-- | gnu/packages/video.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 8e229f1d49..cff7d5abd2 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3319,15 +3319,20 @@ transitions, and effects and then export your film to many common formats.") (define-public dav1d (package (name "dav1d") - (version "0.1.0") + (version "0.2.0") (source (origin (method url-fetch) - (uri (string-append "https://downloads.videolan.org/pub/videolan/" - "dav1d/" version "/dav1d-" version ".tar.xz")) + (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"))) (sha256 (base32 - "0dw0liday8cbyrirhm6bgzhxg4cdy66nspfkdlq338gdsfqcvrsc")))) + "0q0dbbl91syjnkygz268gh4b7mdcgl6hldj300a4cbqidsadpl5p")))) (build-system meson-build-system) (native-inputs `(("nasm" ,nasm))) (home-page "https://code.videolan.org/videolan/dav1d") |