guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: gst-plugins-bad: Limit inputs based on architecture.


From: guix-commits
Subject: 04/04: gnu: gst-plugins-bad: Limit inputs based on architecture.
Date: Sun, 17 Jul 2022 18:11:09 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 17984b079495b79e1dba57113b3b9e44a632cc3c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jul 18 00:24:22 2022 +0300

    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.
---
 gnu/packages/gstreamer.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index dd537c9d10..a1503602ad 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -841,7 +841,9 @@ model to base your own plug-in on, here it is.")
        ("libgme" ,libgme)
        ("libgudev" ,libgudev)
        ("libkate" ,libkate)
-       ("libmfx" ,mediasdk)
+       ,@(if (target-x86?)
+           `(("libmfx" ,mediasdk))
+           '())
        ("libmms" ,libmms)
        ("libmodplug" ,libmodplug)
        ("libmpcdec" ,libmpcdec)
@@ -887,7 +889,9 @@ model to base your own plug-in on, here it is.")
        ("soundtouch" ,soundtouch)
        ("spandsp" ,spandsp)
        ("srt" ,srt)
-       ("svthevcenc" ,svt-hevc)
+       ,@(if (target-x86?)
+           `(("svthevcenc" ,svt-hevc))
+           '())
        ("tinyalsa" ,tinyalsa)
        ("transcode" ,transcode)
        ("usrsctp" ,usrsctp)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]