me
/
guix
Archived
1
0
Fork 0

gnu: Add obs-pipewire-audio-capture.

* gnu/packages/video.scm (obs-pipewire-audio-capture): New variable.

Change-Id: I6f8e400a8ec81b84c65d948b6c30d41d74bd5dca
master
Oleg Pykhalov 2023-12-20 10:48:03 +03:00
parent 352594e812
commit 4af710b2ea
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 29 additions and 0 deletions

View File

@ -3762,6 +3762,35 @@ This may help improve your viewers watching experience, and allows you to use
your host privately.")
(license license:gpl2+)))
(define-public obs-pipewire-audio-capture
(package
(name "obs-pipewire-audio-capture")
(version "1.1.2")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dimtpap/obs-pipewire-audio-capture")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0qjl8xlaf54zgz34f1dfybdg2inc2ir42659kh15ncihpgbx0wzl"))))
(build-system cmake-build-system)
(arguments
(list
#:tests? #f ; no test target
#:configure-flags
#~(list (string-append "-DLIBOBS_INCLUDE_DIR="
#$(this-package-input "obs") "/lib")
"-Wno-dev")))
(native-inputs (list libconfig pkg-config))
(inputs (list obs pipewire))
(home-page "https://obsproject.com/forum/resources/pipewire-audio-capture.1458/")
(synopsis "Audio device and application capture for OBS Studio using PipeWire")
(description "This plugin adds 3 sources for capturing audio outputs,
inputs and applications using PipeWire.")
(license license:gpl2+)))
(define-public obs-websocket
;; Functionality was merged into OBS.
(deprecated-package "obs-websocket" obs))