guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3129949de6cbafbff60bd0abd106c259ae0c4553
Author: Steve George <[email protected]>
AuthorDate: Tue Feb 10 13:54:37 2026 +0000

    gnu: Add obs-stroke-glow-shadow.
    
    * gnu/packages/video.scm (obs-stroke-glow-shadow): New variable.
    
    Change-Id: I78157c431d70636bb8ee474ce17b78d704c56d82
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/video.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 60043f786f..6ad5b17ef3 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4750,6 +4750,37 @@ scenes, sources and filters.")
 via a filter.")
     (license license:gpl2)))
 
+(define-public obs-stroke-glow-shadow
+  (package
+    (name "obs-stroke-glow-shadow")
+    (version "1.5.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url
+              "https://github.com/FiniteSingularity/obs-stroke-glow-shadow";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+          "1niiad93kh27vazqb9w95gvki1mraiyn6z6xwzg36czssrcpmcrx"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:tests? #f ;no tests
+      #:generator "Ninja"
+      #:configure-flags
+      #~(list "-DBUILD_OUT_OF_TREE=ON" "-Wno-dev")))
+    (inputs (list obs simde))
+    (home-page "https://github.com/exeldro/obs-source-record";)
+    (synopsis "This OBS plugin provides stroke, glow and shadow effects")
+    (description
+     "This OBS plugin provides a stroke, glow and shadow effect
+when applied to an OBS source.  It's often used with the Advanced Mask plugin
+to place drop shadows on sources, such as a webcam.")
+    (license license:gpl2)))
+
 ;; Functionality was merged into OBS.
 (define-deprecated-package obs-websocket
   obs)

Reply via email to