me
/
guix
Archived
1
0
Fork 0

gnu: rav1e: Force building with rust edition 2018.

* gnu/packages/video.scm (rav1e)[arguments]: Add phase to force all
input crates to be built with rust edition 2018.
master
Efraim Flashner 2022-09-30 12:43:44 +03:00
parent 9d9b53ed5f
commit 730f7c096d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 0 deletions

View File

@ -5285,6 +5285,12 @@ result in several formats:
(substitute* "Cargo.toml"
;; Allow using more recent versions of
(("~3.1.2") "~3"))))
(add-after 'configure 'force-rust-edition-2018
(lambda* (#:key vendor-dir #:allow-other-keys)
;; Force all the dependencies to not be higher than edition 2018.
(with-fluids ((%default-port-encoding #f))
(substitute* (find-files vendor-dir "Cargo.toml")
(("edition = \\\"2021\\\"") "edition = \"2018\"")))))
(replace 'build
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))