wigust pushed a commit to branch master
in repository guix.

commit 4aad2ff47cdbb02688c45a040405d3dca048834c
Author: Oleg Pykhalov <[email protected]>
AuthorDate: Thu Jun 13 14:58:09 2024 +0300

    gnu: Add obs-source-copy.
    
    * gnu/packages/video.scm (obs-source-copy): New variable.
    
    Change-Id: I73fabb7061abcdad98a93f8ad7cab6ee1892ad9d
---
 gnu/packages/video.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index ddfa3a2b72..089dd17201 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4162,6 +4162,35 @@ your host privately.")
 inputs and applications using PipeWire.")
     (license license:gpl2+)))
 
+(define-public obs-source-copy
+  (package
+    (name "obs-source-copy")
+    (version "0.2.4")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/exeldro/obs-source-copy";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1l3ls3j57yh03vkwiah6yj1xnnmq7q2ngjjn1k4h1sqqk0dxn86j"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:tests? #f ;no tests
+      #:configure-flags
+      #~(list (string-append "-DLIBOBS_INCLUDE_DIR="
+                             #$(this-package-input "obs") "/lib")
+              "-DBUILD_OUT_OF_TREE=On"
+              "-Wno-dev")))
+    (inputs (list obs qtbase-5))
+    (home-page "https://github.com/exeldro/obs-source-copy";)
+    (synopsis "OBS plugin for copy and paste scenes, sources and filters")
+    (description "This package provides an OBS plugin for copy and paste
+scenes, sources and filters.")
+    (license license:gpl2)))
+
 (define-public obs-source-record
   (package
     (name "obs-source-record")

Reply via email to