me
/
guix
Archived
1
0
Fork 0

gnu: rav1e: Only build with nasm on some platforms.

* gnu/packages/video.scm (rav1e)[native-inputs]: Only include nasm on
platforms which need it for building.

Change-Id: Ib9492c5a942d2c97f0aeda48305ec3ffc032fb4b
master
Efraim Flashner 2024-01-07 17:23:00 +02:00
parent b755405103
commit 4e549daedb
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 1 deletions

View File

@ -5945,7 +5945,10 @@ result in several formats:
"--library-type" "cdylib"
(string-append "--prefix=" out))))))))
(native-inputs
(list nasm pkg-config rust-cargo-c))
(append (if (target-x86?)
(list nasm)
'())
(list pkg-config rust-cargo-c)))
(inputs
(list libgit2 zlib))
(home-page "https://github.com/xiph/rav1e/")