guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 847910417427cc520c9e6c70ac27913a43d90bec
Author: Steve George <[email protected]>
AuthorDate: Mon Feb 9 16:09:46 2026 +0000

    gnu: Update obs-wlrobs to 1.2.
    
    * gnu/packages/video.scm (obs-wlrobs): Update to 1.2.
      [source]: Change to url-fetch due to reliability.
      [propagated-inputs]: remove empty list as unnecessary.
      [inputs] update style and alphabetical ordering.
    
    Change-Id: Ib2f23b963b3a7f29ca277df5ae8e3bf3dcb6cce3
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/video.scm | 25 ++++++++++---------------
 1 file changed, 10 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 2d69c5815b..60043f786f 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4757,23 +4757,18 @@ via a filter.")
 (define-public obs-wlrobs
   (package
     (name "obs-wlrobs")
-    (version "1.1")
+    (version "1.2")
     (source
-      (origin
-        (method hg-fetch)
-        (uri (hg-reference
-              (url "https://hg.sr.ht/~scoopta/wlrobs";)
-              (changeset (string-append "v" version))))
-        (file-name (git-file-name name version))
-        (sha256
-         (base32
-          "1whdb2ykisz50qw19nv1djw5qp17rpnpkc8s8470ja8iz894mmwd"))))
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://hg.sr.ht/~scoopta/wlrobs/archive/v";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1xn0jgkgpw3qpngr8111cdlymihqgzlf08ssz8j5mszrm1npkdq4"))))
     (build-system meson-build-system)
-    (native-inputs
-     (list pkg-config))
-    (propagated-inputs `() )
-    (inputs (list obs simde
-                  `(,libx11 "out") wayland wayland-protocols))
+    (native-inputs (list pkg-config))
+    (inputs (list libx11 obs simde wayland wayland-protocols))
     (home-page "https://hg.sr.ht/~scoopta/wlrobs";)
     (synopsis "OBS plugin for Wayland (wlroots) screen capture")
     (description

Reply via email to