This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 2a79848707 gnu: obs: Disable websocket support.
2a79848707 is described below
commit 2a798487077df36ee8950136009532f9a2523073
Author: Raven Hallsby <[email protected]>
AuthorDate: Thu Oct 16 22:05:50 2025 -0500
gnu: obs: Disable websocket support.
* gnu/packages/video.scm (obs): Disable websocket support, which fixes
the build.
Fixes: guix/guix#3582
Change-Id: I7103941412dd2d4b2103ab61558bd3a8ae9cfce9
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/video.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index d9985b4b73..5c58227d0b 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4078,6 +4078,9 @@ be used for realtime video capture via Linux-specific
APIs.")
"-DENABLE_AJA=OFF"
"-DENABLE_QSV11=OFF"
"-DENABLE_NVENC=OFF"
+ ;; <https://github.com/zaphoyd/websocketpp/issues/1157>
+ ;; Fix: <https://github.com/zaphoyd/websocketpp/pull/1164>
+ "-DENABLE_WEBSOCKET=OFF"
;; Browser plugin requires cef, but it is not packaged yet.
;; <https://bitbucket.org/chromiumembedded/cef/src/master/>
"-DBUILD_BROWSER=OFF"))