mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: gst-plugins-bad: Limit inputs based on architecture.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Only build with mediasdk and svt-hevc on supported architectures.
This commit is contained in:
parent
84997d9506
commit
17984b0794
1 changed files with 6 additions and 2 deletions
|
@ -841,7 +841,9 @@ (define-public gst-plugins-bad
|
|||
("libgme" ,libgme)
|
||||
("libgudev" ,libgudev)
|
||||
("libkate" ,libkate)
|
||||
("libmfx" ,mediasdk)
|
||||
,@(if (target-x86?)
|
||||
`(("libmfx" ,mediasdk))
|
||||
'())
|
||||
("libmms" ,libmms)
|
||||
("libmodplug" ,libmodplug)
|
||||
("libmpcdec" ,libmpcdec)
|
||||
|
@ -887,7 +889,9 @@ (define-public gst-plugins-bad
|
|||
("soundtouch" ,soundtouch)
|
||||
("spandsp" ,spandsp)
|
||||
("srt" ,srt)
|
||||
("svthevcenc" ,svt-hevc)
|
||||
,@(if (target-x86?)
|
||||
`(("svthevcenc" ,svt-hevc))
|
||||
'())
|
||||
("tinyalsa" ,tinyalsa)
|
||||
("transcode" ,transcode)
|
||||
("usrsctp" ,usrsctp)
|
||||
|
|
Loading…
Reference in a new issue