diff options
author | Leo Famulari <leo@famulari.name> | 2021-02-10 18:43:34 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-02-11 14:12:29 -0500 |
commit | ea73e829d7d061d9fd8e1f672926363fe8db2a1b (patch) | |
tree | 0b7ec308cd58aa2562bbf7f7a6d43d8be2e9c4d3 | |
parent | 43fb46c831ff6d45c457314ce4bf680f753ff31f (diff) |
gnu: gst-plugins-base: Depend on Opus for all systems.
* gnu/packages/gstreamer.scm (gst-plugins-base)[inputs]: Include opus
unconditionally.
-rw-r--r-- | gnu/packages/gstreamer.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index b582585d75..0921e9ac9f 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -553,11 +553,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") |