mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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
This commit is contained in:
parent
b755405103
commit
4e549daedb
1 changed files with 4 additions and 1 deletions
|
@ -5945,7 +5945,10 @@ (define-public rav1e
|
|||
"--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/")
|
||||
|
|
Loading…
Reference in a new issue