guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add obs-pipewire-audio-capture.


From: guix-commits
Subject: branch master updated: gnu: Add obs-pipewire-audio-capture.
Date: Wed, 20 Dec 2023 03:47:41 -0500

This is an automated email from the git hooks/post-receive script.

wigust pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4af710b2ea gnu: Add obs-pipewire-audio-capture.
4af710b2ea is described below

commit 4af710b2ea91f7d8c24413afaad673c18921a1db
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Wed Dec 20 10:48:03 2023 +0300

    gnu: Add obs-pipewire-audio-capture.
    
    * gnu/packages/video.scm (obs-pipewire-audio-capture): New variable.
    
    Change-Id: I6f8e400a8ec81b84c65d948b6c30d41d74bd5dca
---
 gnu/packages/video.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index ec777d935e..b25352fdaa 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]