guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e4b074237848a9b885690dad6075700ffb0eaa0a
Author: Murilo <[email protected]>
AuthorDate: Thu Aug 28 16:20:54 2025 -0300

    gnu: hypridle: Update to 0.1.7.
    
    * gnu/packages/wm.scm (hypridle): Update to 0.1.7.
    
    Change-Id: I9d5e828306f806af19c76b4a8ac551829b37a94b
    Signed-off-by: John Kehayias <[email protected]>
---
 gnu/packages/wm.scm | 57 +++++++++++++++++++++++++----------------------------
 1 file changed, 27 insertions(+), 30 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 30e6e3daa5..fa6d84cf81 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -334,38 +334,35 @@ or musca).
     (license license:bsd-2)))
 
 (define-public hypridle
-  ;; Go back to regular versioning on next release.
-  (let ((commit "4f1c165d3e340331de020b46b33a3edb2fd9d55e")
-        (revision "1"))
-    (package
-      (name "hypridle")
-      (version (git-version "0.1.6" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/hyprwm/hypridle";)
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "1f75vfd5fv8zhd7hy7lg26wmlaslxqj2knf3zi6wnv21n63m3wa1"))))
-      (build-system cmake-build-system)
-      (arguments (list #:tests? #f)) ;No tests.
-      (native-inputs (list gcc-15 pkg-config))
-      (inputs
-       (list hyprland-protocols
-             hyprlang
-             hyprutils
-             hyprwayland-scanner
-             sdbus-c++
-             wayland
-             wayland-protocols))
-      (home-page "https://github.com/hyprwm/hypridle";)
-      (synopsis "Hyprland's idle daemon")
-      (description "Hyprland's idle daemon, based on the
+  (package
+    (name "hypridle")
+    (version "0.1.7")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/hyprwm/hypridle";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "17h5zmiiq6njc0adkkdrxyhr89dz19z74j9lb0scd7n2g89mcd33"))))
+    (build-system cmake-build-system)
+    (arguments (list #:tests? #f)) ;No tests.
+    (native-inputs (list gcc-15 pkg-config))
+    (inputs
+     (list hyprland-protocols
+           hyprlang
+           hyprutils
+           hyprwayland-scanner
+           sdbus-c++
+           wayland
+           wayland-protocols))
+    (home-page "https://github.com/hyprwm/hypridle";)
+    (synopsis "Hyprland's idle daemon")
+    (description "Hyprland's idle daemon, based on the
 @code{ext-idle-notify-v1} Wayland protocol.  Hypridle has support for D-Bus's
 loginctl commands (lock/unlock/before-sleep) and inhibit.")
-      (license license:bsd-3))))
+    (license license:bsd-3)))
 
 (define-public hyprland
   (package

Reply via email to