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
parent
9d9b53ed5f
commit
730f7c096d
|
@ -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")))
|
||||
|
|
Reference in New Issue