diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-07 12:43:50 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:33 +0200 |
commit | a440b5eb2f1afcaccebd0f702b738c34a4bbc109 (patch) | |
tree | fc93cc058ede0a55b8422bf5302bc33328dd7d39 /gnu/packages/video.scm | |
parent | bc6783d9c07be9003764fa345801d3fffe58c2ca (diff) | |
download | guix-a440b5eb2f1afcaccebd0f702b738c34a4bbc109.tar guix-a440b5eb2f1afcaccebd0f702b738c34a4bbc109.tar.gz |
gnu: dav1d: Update to 1.3.0.
* gnu/packages/video.scm (dav1d): Update to 1.3.0.
[native-inputs]: Only use nasm when building for x86_64 or i686.
* gnu/packages/crates-graphics.scm (rust-dav1d-sys-0.7)[arguments]: Skip
the build.
Change-Id: I2e3fb6d343c92e48f231bf2b77259856a47bbc51
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 3b29a5cd27..ee10af90c5 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5575,7 +5575,7 @@ and audio capture, network stream playback, and many more.") (define-public dav1d (package (name "dav1d") - (version "1.0.0") + (version "1.3.0") (source (origin (method git-fetch) @@ -5584,9 +5584,12 @@ and audio capture, network stream playback, and many more.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0jkvb5as7danpalzlwd0w1dc9i2vijvmf39z0j6fwqvialsgnnj5")))) + (base32 "17r6qdijdnqfciqa0ia2y4gyhaav6y5gc4d9xj4dg9h7xnpyxc3k")))) (build-system meson-build-system) - (native-inputs (list nasm)) + (native-inputs + (if (target-x86?) + (list nasm) + '())) (home-page "https://code.videolan.org/videolan/dav1d") (synopsis "AV1 decoder") (description "dav1d is a new AV1 cross-platform decoder, and focused on |