aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAntoine Côté <antoine.cote@posteo.net>2020-12-31 18:42:15 -0500
committerEfraim Flashner <efraim@flashner.co.il>2021-01-03 17:24:26 +0200
commite7ff878f755409a89c933691b764f7a8e6f4e021 (patch)
treefd98ccb3acc850958af85a65ab7f5712a9fec48c /gnu
parent761710957ce714b141f8c60f07bed33ed9bef336 (diff)
downloadguix-e7ff878f755409a89c933691b764f7a8e6f4e021.tar.gz
guix-e7ff878f755409a89c933691b764f7a8e6f4e021.zip
gnu: rav1e: Update to 0.3.5.
* gnu/packages/video.scm (rav1e): Update to 0.3.5. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/video.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 5de3fc4a86..3df1a753ed 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4741,7 +4741,7 @@ result in several formats:
(define-public rav1e
(package
(name "rav1e")
- (version "0.3.4")
+ (version "0.3.5")
(source
(origin
(method url-fetch)
@@ -4750,7 +4750,7 @@ result in several formats:
(string-append name "-" version ".tar.gz"))
(sha256
(base32
- "1mx6jlx2rdhmyh68h9h34kn9ssa7lv0y97j8fd9qm7qhs2q1n0cj"))))
+ "0c40gq4qid2apmlgzx98f6826jmn2n61prk0rn7sjxaw7yimw854"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
services: Use 'match-record' instead of 'match'....* gnu/home/services/mcron.scm (home-mcron-shepherd-services): Use 'match-record' instead of 'match'. * gnu/home/services/shells.scm (home-bash-extensions): Likewise. * gnu/home/services/xdg.scm (serialize-xdg-desktop-entry): Likewise. Ludovic Courtès 2022-11-17Fix problems initially introduced in commit 543d971ed2, now reinstated....Commit 543d971ed2 ("services: configuration: Re-order generated record fields") introduced two regressions, one in guix home and another one in the zabbix service. * gnu/home/services/shells.scm (home-bash-extensions): Remove the first pattern in the match, which used to be to ignore %location. * gnu/services/monitoring.scm (zabbix-front-end-nginx-extension): Likewise. Maxim Cournoyer