gnu: Add obs-pipewire-audio-capture.
* gnu/packages/video.scm (obs-pipewire-audio-capture): New variable. Change-Id: I6f8e400a8ec81b84c65d948b6c30d41d74bd5dca
This commit is contained in:
parent
352594e812
commit
4af710b2ea
1 changed files with 29 additions and 0 deletions
|
@ -3762,6 +3762,35 @@ This may help improve your viewers watching experience, and allows you to use
|
||||||
your host privately.")
|
your host privately.")
|
||||||
(license license:gpl2+)))
|
(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
|
(define-public obs-websocket
|
||||||
;; Functionality was merged into OBS.
|
;; Functionality was merged into OBS.
|
||||||
(deprecated-package "obs-websocket" obs))
|
(deprecated-package "obs-websocket" obs))
|
||||||
|
|
Reference in a new issue