apteryx pushed a commit to branch core-updates-frozen-batched-changes in repository guix.
commit d8991f72bad80d71d47e5ca3004ba729cebf3713 Author: Leo Famulari <[email protected]> AuthorDate: Wed Feb 10 18:43:34 2021 -0500 gnu: gst-plugins-base: Depend on Opus for all systems. * gnu/packages/gstreamer.scm (gst-plugins-base)[inputs]: Include opus unconditionally. --- gnu/packages/gstreamer.scm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 9e7525b..32ad2f1 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -559,11 +559,7 @@ This package provides the core library and elements.") ("libXext" ,libxext) ("libxv" ,libxv) ("alsa-lib" ,alsa-lib) - ;; XXX Don't build with opus on 32-bit systems: - ;; <https://bugs.gnu.org/32360> - ,@(if (target-64bit?) - `(("opus" ,opus)) - '()))) + ("opus" ,opus))) (native-inputs `(("pkg-config" ,pkg-config) ("glib:bin" ,glib "bin")
