[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#76910] [PATCH v3 5/5] gnu: Add hypr-dynamic-cursors.
From: |
Gabriel Santos |
Subject: |
[bug#76910] [PATCH v3 5/5] gnu: Add hypr-dynamic-cursors. |
Date: |
Sat, 29 Mar 2025 13:16:40 -0300 |
* gnu/packages/wm.scm (hypr-dynamic-cursors): New variable.
Change-Id: I3cc75a076e6c8c65356444a98c0122af3bb76d0a
---
gnu/packages/wm.scm | 48 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 5271d85d20..2ba0bb6bbc 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -81,6 +81,7 @@
;;; Copyright © 2025 Tomáš Čech <sleep_walker@gnu.org>
;;; Copyright © 2025 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2025 Andrew Wong <wongandj@icloud.com>
+;;; Copyright © 2025 Gabriel Santos <gabrielsantosdesouza@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -656,6 +657,53 @@ (define-public hypr-darkwindow
window.")
(license license:expat)))
+(define-public hypr-dynamic-cursors
+ (let ((commit "e2c32d8108960b6eaf96918485503e90a016de4b")
+ (revision "0")) ; Has no versioning scheme
+ (package
+ (name "hypr-dynamic-cursors")
+ (version (git-version "1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/VirtCode/hypr-dynamic-cursors")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1sx0x0ssqsrq72g4bp81jhinvswx5rdywhyrg8cqg9yx6wk9gmzy"))))
+ (build-system gnu-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ cairo
+ hyprcursor
+ hyprgraphics
+ hyprland
+ hyprlang
+ hyprutils
+ libinput-minimal
+ libxcursor
+ libxkbcommon
+ mesa
+ wayland))
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* _
+ (install-file "out/dynamic-cursors.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/VirtCode/hypr-dynamic-cursors")
+ (synopsis "Hyprland plugin that provides cursor effects")
+ (description
+ "This plugin adds multiple cursor gimmicks, such as simulated
+physics that makes the cursor behave like a stick. There's also a shake
+to find function like in KDE Plasma.")
+ (license license:expat))))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
- [bug#76910] [PATCH v2 1/4] gnu: Add Hyprland plugins., (continued)
- [bug#76910] [PATCH v2 1/4] gnu: Add Hyprland plugins., Andrew Wong, 2025/03/29
- [bug#76910] [PATCH v2 3/4] gnu: Add hy3., Andrew Wong, 2025/03/29
- [bug#76910] [PATCH v2 2/4] gnu: Add hyprscroller., Andrew Wong, 2025/03/29
- [bug#76910] [PATCH v2 4/4] gnu: Add hypr-darkwindow., Andrew Wong, 2025/03/29
- [bug#76910] [PATCH v2 0/4] Add Hyprland Plugins (Update), Gabriel Santos, 2025/03/29
[bug#76910] [PATCH v3 0/5] Add Hyprland Plugins (Update), Gabriel Santos, 2025/03/29
- [bug#76910] [PATCH v3 5/5] gnu: Add hypr-dynamic-cursors.,
Gabriel Santos <=
- [bug#76910] [PATCH v3 3/5] gnu: Add hy3., Gabriel Santos, 2025/03/29
- [bug#76910] [PATCH v3 4/5] gnu: Add hypr-darkwindow., Gabriel Santos, 2025/03/29
- [bug#76910] [PATCH v3 2/5] gnu: Add hyprscroller., Gabriel Santos, 2025/03/29
- [bug#76910] [PATCH v3 1/5] gnu: Add Hyprland plugins., Gabriel Santos, 2025/03/29
- [bug#76910] Plugin Build Conundrum, Andrew Wong, 2025/03/29