summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Mitasov <me@ch4og.com>2026-05-28 13:30:28 +0300
committerHilton Chain <hako@ultrarare.space>2026-06-17 01:04:41 +0800
commit4e2f73b375162aed42f6863955b1cb698cd325b9 (patch)
tree7fc86303dcee484311aa68763a4b03753d9e284f
parent3cddddf649cd0c4215fc853876ca4c6494af52e9 (diff)
nongnu: video: Add obs-with-cef-nvidia.
* nongnu/packages/video.scm (obs-with-cef-nvidia): New variable. * README.org (NVIDIA graphics card): Add mention of it. Signed-off-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r--README.org1
-rw-r--r--nongnu/packages/video.scm19
2 files changed, 20 insertions, 0 deletions
diff --git a/README.org b/README.org
index 16673f5..8106629 100644
--- a/README.org
+++ b/README.org
@@ -472,6 +472,7 @@ of the normal one. Aforementioned application setup is still necessary.
472 472
473- mpv-nvidia 473- mpv-nvidia
474- obs-nvidia 474- obs-nvidia
475- obs-with-cef-nvidia
475 476
476| Variable | Specification | 477| Variable | Specification |
477|-----------------------------+-----------------------------| 478|-----------------------------+-----------------------------|
diff --git a/nongnu/packages/video.scm b/nongnu/packages/video.scm
index c6bf2b9..57772b1 100644
--- a/nongnu/packages/video.scm
+++ b/nongnu/packages/video.scm
@@ -247,6 +247,25 @@ cards)")))
247 " This build of OBS includes embeded Chromium-based browser to enable 247 " This build of OBS includes embeded Chromium-based browser to enable
248Browser source.")))) 248Browser source."))))
249 249
250(define-public obs-with-cef-nvidia
251 (package/inherit obs-with-cef
252 (name "obs-with-cef-nvidia")
253 (arguments
254 (substitute-keyword-arguments arguments
255 ((#:configure-flags flags #~'())
256 #~(append #$flags '("-DENABLE_NVENC=ON")))))
257 (inputs
258 (modify-inputs inputs
259 (prepend nv-codec-headers)))
260 (synopsis
261 "Live streaming software (with hardware acceleration for NVIDIA graphics
262cards)")
263 (description
264 (string-append
265 (package-description obs-nvidia)
266 " This build of OBS includes embeded Chromium-based browser to enable
267Browser source."))))
268
250(define-public grayjay 269(define-public grayjay
251 (package 270 (package
252 (name "grayjay") 271 (name "grayjay")