guix-commits
[Top][All Lists]
Advanced

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

07/08: gnu: Add obs-move-transition.


From: guix-commits
Subject: 07/08: gnu: Add obs-move-transition.
Date: Sun, 4 Aug 2024 05:53:22 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit e2d746045951d3040371866f8a5829365818ab71
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 4 12:07:38 2024 +0300

    gnu: Add obs-move-transition.
    
    * gnu/packages/video.scm (obs-move-transition): New variable.
    
    Change-Id: I0a3ca70868e438693e23e33ef574a17c4a4dfd00
---
 gnu/packages/video.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 8fd02b1ec5..f866c0f780 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4254,6 +4254,37 @@ This may help improve your viewers watching experience, 
and allows you to use
 your host privately.")
     (license license:gpl2+)))
 
+(define-public obs-move-transition
+  (package
+    (name "obs-move-transition")
+    (version "3.0.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/exeldro/obs-move-transition";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0kni1a8zqqbgx5mmaw4k4chswsy0i9qk89zcbg58mvspz9zzv4id"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:modules '((guix build cmake-build-system)
+                  (guix build utils))
+      #: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-move-transition";)
+    (synopsis "Move transition for OBS Studio")
+    (description "Plugin for OBS Studio to move source to a new position
+during scene transition.")
+    (license license:gpl2)))
+
 (define-public obs-pipewire-audio-capture
   (package
     (name "obs-pipewire-audio-capture")



reply via email to

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