guix_mirror_bot pushed a commit to branch master
in repository guix.

commit fb11787e01725ced1314d470bc6206838e6a6f65
Author: Steve George <[email protected]>
AuthorDate: Sun Dec 7 17:52:07 2025 +0000

    gnu: obs-source-copy: Update to 0.3.0.
    
    * gnu/packages/video.scm: Update to 0.3.0.
      [source]<origin>: Switch to url-fetch as upstream releases
       have hashes that we can verify.
      [inputs]: change qtbase to use QT6.
    
    Change-Id: I977a006a6cd8d171adcb8651e2ffc35bea287b1b
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/video.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index a68bd69478..61c2559ab8 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4749,16 +4749,15 @@ different filters than the original.")
 (define-public obs-source-copy
   (package
     (name "obs-source-copy")
-    (version "0.2.6")
+    (version "0.3.0")
     (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))
+              (method url-fetch)
+              (uri (string-append 
"https://github.com/exeldro/obs-source-copy/releases/download/";
+                                  version
+                                  "/source-copy-" version "-source.tar.xz"))
               (sha256
                (base32
-                "0hkjpjli1bw090asc0a9km1gqjachv3hsx5z642kqc5mrnq7fnq3"))))
+                "0zr1yayzd4x3m108ji9c4xs7d7bavbz2hr81782l25kfhv3ry9f7"))))
     (build-system cmake-build-system)
     (arguments
      (list
@@ -4768,7 +4767,7 @@ different filters than the original.")
                              #$(this-package-input "obs") "/lib")
               "-DBUILD_OUT_OF_TREE=On"
               "-Wno-dev")))
-    (inputs (list obs qtbase-5 simde))
+    (inputs (list obs qtbase simde))
     (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

Reply via email to