[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: dav1d: Update to 0.2.0.
From: |
guix-commits |
Subject: |
01/01: gnu: dav1d: Update to 0.2.0. |
Date: |
Tue, 5 Mar 2019 17:57:52 -0500 (EST) |
lfam pushed a commit to branch master
in repository guix.
commit 5f7c036cf66ea2f91e2f73bf136c6fe0336672eb
Author: Leo Famulari <address@hidden>
Date: Tue Mar 5 17:12:03 2019 -0500
gnu: dav1d: Update to 0.2.0.
* gnu/packages/video.scm (dav1d): Update to 0.2.0.
[source]: Add alternate URL.
---
gnu/packages/video.scm | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 8e229f1..cff7d5a 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")