[PATCH 0/4] gnu: Add Hyprland plugins

  • Open
  • quality assurance status badge
Details
3 participants
  • Gabriel Santos
  • Gabriel Santos
  • Andrew Wong
Owner
unassigned
Submitted by
Andrew Wong
Severity
normal

Debbugs page

A
A
Andrew Wong wrote on 9 Mar 21:23 -0700
(address . guix-patches@gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
cover.1741580560.git.wongandj@icloud.com
This patch series adds official and unofficial plugins for the
Hyprland window manager.

Andrew Wong (4):
gnu: Add Hyprland plugins.
gnu: Add hyprscroller.
gnu: Add hy3.
gnu: Add hypr-darkwindow.

gnu/packages/wm.scm | 209 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 209 insertions(+)


base-commit: c10ca0d37a640000d09e42766123088041431e6c
--
2.48.1
A
A
Andrew Wong wrote on 9 Mar 21:26 -0700
[PATCH 1/4] gnu: Add Hyprland plugins.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
95680edecb89a234398415e227b94af2b6525104.1741580560.git.wongandj@icloud.com
* gnu/packages/wm.scm (hyprland-plugin): New function.
* gnu/packages/wm.scm (borders-plus-plus): New variable.
* gnu/packages/wm.scm (csgo-vulkan-fix): New variable.
* gnu/packages/wm.scm (hyprbars): New variable.
* gnu/packages/wm.scm (hyprexpo): New variable.
* gnu/packages/wm.scm (hyprtrails): New variable.
* gnu/packages/wm.scm (hyprwinwrap): New variable.
* gnu/packages/wm.scm (xtra-dispatchers): New variable.

Change-Id: I923095e0d0cbc1c237e55a78dd2e9c1b1a3235df
---
gnu/packages/wm.scm | 75 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)

Toggle diff (88 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index a0b6c6f40a..0cfd2c99d4 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -443,6 +443,81 @@ (define-public hyprland
its looks.")
(license license:bsd-3)))
+(define hyprland-plugin
+ (lambda (plugin-name plugin-provision)
+ "Generate a packaged plugin from Hyprland's official plugin repository."
+ (package
+ (name plugin-name)
+ (version "0.47.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hyprwm/hyprland-plugins")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "06jydclvivd7xq0kwn6s19jhmmfqc5q649z7w4wqqj6jdhgkhayg"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list hyprland
+ libdrm
+ libinput
+ eudev
+ pango
+ pixman
+ wayland
+ libxkbcommon
+ mesa
+ hyprutils
+ hyprgraphics
+ aquamarine
+ hyprlang))
+ (arguments (list #:cmake cmake-3.30
+ #:tests? #f ; no tests.
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir #$plugin-name)))
+ (replace 'install-license-files
+ (lambda _ (install-file
+ "../LICENSE"
+ (string-append #$output "/share/doc/"
+ #$name "-"
+ #$version)))))))
+ (home-page (string-append "https://github.com/hyprwm/hyprland-plugins/"
+ plugin-name))
+ (synopsis (string-append "Hyprland plugin providing "
+ plugin-provision))
+ (description
+ (string-append "This is an official Hyprland plugin that provides "
+ plugin-provision "."))
+ (license license:bsd-3))))
+
+(define-public borders-plus-plus
+ (hyprland-plugin "borders-plus-plus" "extra borders around windows"))
+
+(define-public csgo-vulkan-fix
+ (let ((parent (hyprland-plugin "csgo-vulkan-fix"
+ "virtual native resolution reporting")))
+ (package (inherit parent) (inputs (modify-inputs (package-inputs parent)
+ (append xcb-util-wm))))))
+
+(define-public hyprbars
+ (hyprland-plugin "hyprbars" "window title bars"))
+
+(define-public hyprexpo
+ (hyprland-plugin "hyprexpo" "an exposé feature"))
+
+(define-public hyprtrails
+ (hyprland-plugin "hyprtrails" "trail effects behind windows"))
+
+(define-public hyprwinwrap
+ (hyprland-plugin "hyprwinwrap" "a window-as-wallpaper feature"))
+
+(define-public xtra-dispatchers
+ (hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+
(define-public i3status
(package
(name "i3status")
--
2.48.1
A
A
Andrew Wong wrote on 9 Mar 21:26 -0700
[PATCH 2/4] gnu: Add hyprscroller.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
52e958776aa7a69eed92fc646d789fac3fbcb3ef.1741580560.git.wongandj@icloud.com
* gnu/packages/wm.scm (hyprscroller): New variable.

Change-Id: I56c9984c7ce013f0ce4b22ec1f5df778fe17f736
---
gnu/packages/wm.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)

Toggle diff (62 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 0cfd2c99d4..4c6d0eadd5 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -518,6 +518,55 @@ (define-public hyprwinwrap
(define-public xtra-dispatchers
(hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+(define-public hyprscroller
+ (package
+ (name "hyprscroller")
+ ;; Upstream has no tags, but we can use the commits which add support for
+ ;; the corresponding Hyprland version (see ./hyprscoller.toml).
+ (version "0.47.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dawsers/hyprscroller")
+ (commit "e87f2caeced2d36a304620a082b36245d06f9218")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0aay8d0ldmd3441w4x156z4npfzlk7zkvq1fbbbm414p995jqj51"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)
+ (replace 'install
+ (lambda* _
+ (install-file "hyprscroller.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/dawsers/hyprscroller")
+ (synopsis "Hyprland plugin for a PaperWM-like scrolling layout")
+ (description
+ "Hyprscroller is a Hyprland layout plugin that creates a window layout
+similar to PaperWM. The plugin supports gaps, borders, decorations,
+special workspace, full screen modes, overview, marks, pinned columns,
+touchpad gestures, copying/pasting windows, trails/trailmarks, quick
+jump mode, and installation through hyprpm.")
+ (license license:expat)))
+
(define-public i3status
(package
(name "i3status")
--
2.48.1
A
A
Andrew Wong wrote on 9 Mar 21:26 -0700
[PATCH 3/4] gnu: Add hy3.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
3c4133f1965c57313046adf895462a78ef579474.1741580560.git.wongandj@icloud.com
* gnu/packages/wm.scm (hy3): New variable.

Change-Id: Id42dc76ab3440c7c651933c60b1ae30f8055afed
---
gnu/packages/wm.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)

Toggle diff (52 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 4c6d0eadd5..49e02f1f93 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -567,6 +567,45 @@ (define-public hyprscroller
jump mode, and installation through hyprpm.")
(license license:expat)))
+(define-public hy3
+ (package
+ (name "hy3")
+ (version "0.47.0-1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/outfoxxed/hy3")
+ (commit (string-append "hl" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "02iayhdmw42ipy6j05qbnlpwqn74qyslczw7ikk3vxwrxh426iky"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:tests? #f))
+ (home-page "https://github.com/outfoxxed/hy3")
+ (synopsis "Hyprland plugin for an i3/sway-like manual tiling layout")
+ (description
+ "hy3 is a Hyprland plugin providing an i3/sway-like manual
+tiling layout, including node-based window manipulation and optional
+autotiling.")
+ (license license:gpl3)))
+
(define-public i3status
(package
(name "i3status")
--
2.48.1
A
A
Andrew Wong wrote on 9 Mar 21:26 -0700
[PATCH 4/4] gnu: Add hypr-darkwindow.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
c22062f3c7bf5d28bc3112f057443f1a2f534fbb.1741580560.git.wongandj@icloud.com
* gnu/packages/wm.scm (hypr-darkwindow): New variable.

Change-Id: Ide445c85047e17b5817580bde896a6c303e6a4cd
---
gnu/packages/wm.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)

Toggle diff (59 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 49e02f1f93..f21cf03780 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -606,6 +606,52 @@ (define-public hy3
autotiling.")
(license license:gpl3)))
+(define-public hypr-darkwindow
+ (package
+ (name "hypr-darkwindow")
+ (version "0.47.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/micha4w/Hypr-DarkWindow")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0g7zmzwa9w98wwygzl3wxgc6adh6h5ixrm3b8biimby2z5vwc2fz"))))
+ (build-system gnu-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* _
+ (install-file "out/hypr-darkwindow.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/micha4w/Hypr-DarkWindow")
+ (synopsis "Hyprland plugin that provides window color inversion")
+ (description
+ "This plugin adds the dispatchers @code{invertwindow WINDOW}
+and @code{invertactivewindow}, which invert the colors of the indicated
+window.")
+ (license license:expat)))
+
(define-public i3status
(package
(name "i3status")
--
2.48.1
A
A
Andrew Wong wrote on 29 Mar 01:32 -0700
[PATCH v2 0/4] Add Hyprland Plugins (Update)
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
cover.1743237168.git.wongandj@icloud.com
This new version updates hyprscroller and hy3 to be compatible with the latest 0.48.0 release of Hyprland.

Andrew Wong (4):
gnu: Add Hyprland plugins.
gnu: Add hyprscroller.
gnu: Add hy3.
gnu: Add hypr-darkwindow.

gnu/packages/wm.scm | 209 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 209 insertions(+)


base-commit: ce086e31f0f5c78be76fd228dfd7718ff6df584e
--
2.49.0
A
A
Andrew Wong wrote on 29 Mar 01:32 -0700
[PATCH v2 1/4] gnu: Add Hyprland plugins.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
448e7dba50c454febb3609fbb24f6fafba5e6c0f.1743237168.git.wongandj@icloud.com
* gnu/packages/wm.scm (hyprland-plugin): New function.
* gnu/packages/wm.scm (borders-plus-plus): New variable.
* gnu/packages/wm.scm (csgo-vulkan-fix): New variable.
* gnu/packages/wm.scm (hyprbars): New variable.
* gnu/packages/wm.scm (hyprexpo): New variable.
* gnu/packages/wm.scm (hyprtrails): New variable.
* gnu/packages/wm.scm (hyprwinwrap): New variable.
* gnu/packages/wm.scm (xtra-dispatchers): New variable.

Change-Id: I923095e0d0cbc1c237e55a78dd2e9c1b1a3235df
---
gnu/packages/wm.scm | 75 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)

Toggle diff (88 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 2eefdb4c64..5017344e5b 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -446,6 +446,81 @@ (define-public hyprland
`((upstream-name . "source")))
(license license:bsd-3)))
+(define hyprland-plugin
+ (lambda (plugin-name plugin-provision)
+ "Generate a packaged plugin from Hyprland's official plugin repository."
+ (package
+ (name plugin-name)
+ (version "0.47.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hyprwm/hyprland-plugins")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "06jydclvivd7xq0kwn6s19jhmmfqc5q649z7w4wqqj6jdhgkhayg"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list hyprland
+ libdrm
+ libinput
+ eudev
+ pango
+ pixman
+ wayland
+ libxkbcommon
+ mesa
+ hyprutils
+ hyprgraphics
+ aquamarine
+ hyprlang))
+ (arguments (list #:cmake cmake-3.30
+ #:tests? #f ; no tests.
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir #$plugin-name)))
+ (replace 'install-license-files
+ (lambda _ (install-file
+ "../LICENSE"
+ (string-append #$output "/share/doc/"
+ #$name "-"
+ #$version)))))))
+ (home-page (string-append "https://github.com/hyprwm/hyprland-plugins/"
+ plugin-name))
+ (synopsis (string-append "Hyprland plugin providing "
+ plugin-provision))
+ (description
+ (string-append "This is an official Hyprland plugin that provides "
+ plugin-provision "."))
+ (license license:bsd-3))))
+
+(define-public borders-plus-plus
+ (hyprland-plugin "borders-plus-plus" "extra borders around windows"))
+
+(define-public csgo-vulkan-fix
+ (let ((parent (hyprland-plugin "csgo-vulkan-fix"
+ "virtual native resolution reporting")))
+ (package (inherit parent) (inputs (modify-inputs (package-inputs parent)
+ (append xcb-util-wm))))))
+
+(define-public hyprbars
+ (hyprland-plugin "hyprbars" "window title bars"))
+
+(define-public hyprexpo
+ (hyprland-plugin "hyprexpo" "an exposé feature"))
+
+(define-public hyprtrails
+ (hyprland-plugin "hyprtrails" "trail effects behind windows"))
+
+(define-public hyprwinwrap
+ (hyprland-plugin "hyprwinwrap" "a window-as-wallpaper feature"))
+
+(define-public xtra-dispatchers
+ (hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
A
A
Andrew Wong wrote on 29 Mar 01:32 -0700
[PATCH v2 2/4] gnu: Add hyprscroller.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
d0d0ee2a177d78584bd295cf9687cb125b2f697e.1743237168.git.wongandj@icloud.com
* gnu/packages/wm.scm (hyprscroller): New variable.

Change-Id: I56c9984c7ce013f0ce4b22ec1f5df778fe17f736
---
gnu/packages/wm.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)

Toggle diff (62 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 5017344e5b..9b6a78700b 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -521,6 +521,55 @@ (define-public hyprwinwrap
(define-public xtra-dispatchers
(hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+(define-public hyprscroller
+ (package
+ (name "hyprscroller")
+ ;; Upstream has no tags, but we can use the commits which add support for
+ ;; the corresponding Hyprland version (see ./hyprscoller.toml).
+ (version "0.48.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dawsers/hyprscroller")
+ (commit "5b62ca58790f8c2961da79af95efa458f6a814fe")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0bg2gcrdgz68r8anchhb46hn9l5pancr9h83a2fav96bwyhwx2cs"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)
+ (replace 'install
+ (lambda* _
+ (install-file "hyprscroller.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/dawsers/hyprscroller")
+ (synopsis "Hyprland plugin for a PaperWM-like scrolling layout")
+ (description
+ "Hyprscroller is a Hyprland layout plugin that creates a window layout
+similar to PaperWM. The plugin supports gaps, borders, decorations,
+special workspace, full screen modes, overview, marks, pinned columns,
+touchpad gestures, copying/pasting windows, trails/trailmarks, quick
+jump mode, and installation through hyprpm.")
+ (license license:expat)))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
A
A
Andrew Wong wrote on 29 Mar 01:32 -0700
[PATCH v2 3/4] gnu: Add hy3.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
8586cbc2c35b3774928986fd3425b77b153f92c6.1743237168.git.wongandj@icloud.com
* gnu/packages/wm.scm (hy3): New variable.

Change-Id: Id42dc76ab3440c7c651933c60b1ae30f8055afed
---
gnu/packages/wm.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)

Toggle diff (52 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 9b6a78700b..6a96f01356 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -570,6 +570,45 @@ (define-public hyprscroller
jump mode, and installation through hyprpm.")
(license license:expat)))
+(define-public hy3
+ (package
+ (name "hy3")
+ (version "0.48.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/outfoxxed/hy3")
+ (commit (string-append "hl" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qrkb946zz4675qk1n4l7ik5w6n7v6m38yq9g0lwhqxmddrp2j89"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:tests? #f))
+ (home-page "https://github.com/outfoxxed/hy3")
+ (synopsis "Hyprland plugin for an i3/sway-like manual tiling layout")
+ (description
+ "hy3 is a Hyprland plugin providing an i3/sway-like manual
+tiling layout, including node-based window manipulation and optional
+autotiling.")
+ (license license:gpl3)))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
A
A
Andrew Wong wrote on 29 Mar 01:32 -0700
[PATCH v2 4/4] gnu: Add hypr-darkwindow.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
2e4851ed811c0e4d78c543905ea7890060fe5bd4.1743237168.git.wongandj@icloud.com
* gnu/packages/wm.scm (hypr-darkwindow): New variable.

Change-Id: Ide445c85047e17b5817580bde896a6c303e6a4cd
---
gnu/packages/wm.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)

Toggle diff (59 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 6a96f01356..63cfa11ca5 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -609,6 +609,52 @@ (define-public hy3
autotiling.")
(license license:gpl3)))
+(define-public hypr-darkwindow
+ (package
+ (name "hypr-darkwindow")
+ (version "0.47.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/micha4w/Hypr-DarkWindow")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0g7zmzwa9w98wwygzl3wxgc6adh6h5ixrm3b8biimby2z5vwc2fz"))))
+ (build-system gnu-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* _
+ (install-file "out/hypr-darkwindow.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/micha4w/Hypr-DarkWindow")
+ (synopsis "Hyprland plugin that provides window color inversion")
+ (description
+ "This plugin adds the dispatchers @code{invertwindow WINDOW}
+and @code{invertactivewindow}, which invert the colors of the indicated
+window.")
+ (license license:expat)))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
G
G
G
Gabriel Santos wrote on 29 Mar 06:51 -0700
Re: [bug#76910] [PATCH v2 4/4] gnu: Add hypr-darkwindow.
2F200957-E2AE-4743-AD9F-40490B12CDD6@disroot.org
I noticed that the Flake for this plugin and for
hypr-dynamic-cursors prefix the compiled file with
"lib"[1, 2].

Do you know why that is? Would it also be necessary
for Guix?


--
Gabriel Santos
G
G
Gabriel Santos wrote on 29 Mar 06:58 -0700
Re: [bug#76910] [PATCH v2 1/4] gnu: Add Hyprland plugins.
7CB233BE-649D-4BC1-B4EA-D14DE3C5B9C7@disroot.org
The policy for Guix is one package per commit.

Even with the use of a helper like hyprland-plugin,
wouldn't that also apply here?

If you end up deciding to change that, here is a tip:

In the git-rebase-todo file, you can change the order of
the commits by rearranging their lines. If you use Magit,
you can do that by dragging the commit with M-n and M-p.

That way, you could modify your hyprland-plugin to
be the first, and have the other packages come next.

If you allow me to submit a v3, I think I could do that.

--
Gabriel Santos
A
A
Andrew Wong wrote on 29 Mar 07:16 -0700
Re: [bug#76910] [PATCH v2 0/4] Add Hyprland Plugins (Update)
8b31e212-2c82-43c1-ad9d-a2e303b79bcb@icloud.com
On 3/29/25 8:06a, Gabriel Santos wrote> Would it be ok if I added
hypr-dynamic-cursors[1] to it by
Toggle quote (1 lines)
> sending a V3?
Sure, go ahead! While you're at it, could you add both of our names and
addresses to the copyright at the top of the file? I keep forgetting to
do it :p

On 3/29/25 9:58a, Gabriel Santos wrote:
Toggle quote (5 lines)
> The policy for Guix is one package per commit.
>
> Even with the use of a helper like hyprland-plugin,
> wouldn't that also apply here?

I thought about it, but I have submitted similar patches in the past[1]
without any hangups, so I did the same here for the sake of simplicity.

Toggle quote (2 lines)
> If you allow me to submit a v3, I think I could do that.

Sure, go ahead. I'm not attached to any particular commit arrangement.

On 3/29/25 9:51a, Gabriel Santos wrote:
Toggle quote (7 lines)
> I noticed that the Flake for this plugin and for
> hypr-dynamic-cursors prefix the compiled file with
> "lib"[1, 2].
>
> Do you know why that is? Would it also be necessary
> for Guix?

I'm not sure why. It's not a requirement for the plugins to work, so I'd
guess it's just a convention of Nix or the packager.

[1] a9a13ebccc (gnu: Add libretro-beetle-psx., 2025-01-04)
G
G
Gabriel Santos wrote on 29 Mar 08:06 -0700
7DA37438-E0D3-4DE1-AB2F-F65D0CF307D3@disroot.org
Toggle quote (2 lines)
>Sure, go ahead! While you're at it, could you add both of our names and addresses to the copyright at the top of the file? I keep forgetting to do it :p

I wonder if the function for that could be loaded with
.dir-locals.el, but it probably has existed for a long
time, so maybe someone already tried that.

Toggle quote (4 lines)
>I thought about it, but I have submitted similar patches in the past[1] without any hangups, so I did the same here for the sake of simplicity.

>Sure, go ahead. I'm not attached to any particular commit arrangement.

If there's no issues, I think it would be best to leave
it that way.

--
Gabriel Santos
G
G
Gabriel Santos wrote on 29 Mar 09:16 -0700
[bug#76910] [PATCH v3 0/5] Add Hyprland Plugins (Update)
(address . 76910@debbugs.gnu.org)(name . Gabriel Santos)(address . gabrielsantosdesouza@disroot.org)
cover.1743265000.git.gabrielsantosdesouza@disroot.org
This new revision add in a missing copyright statement, and a new plugin,
hypr-dynamic-cursors.

Andrew Wong (4):
gnu: Add Hyprland plugins.
gnu: Add hyprscroller.
gnu: Add hy3.
gnu: Add hypr-darkwindow.

Gabriel Santos (1):
gnu: Add hypr-dynamic-cursors.

gnu/packages/wm.scm | 258 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 258 insertions(+)


base-commit: 3746dcae31730ff405f49e1a32b506bfa827a3ea
--
2.49.0
G
G
Gabriel Santos wrote on 29 Mar 09:16 -0700
[bug#76910] [PATCH v3 1/5] gnu: Add Hyprland plugins.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
bfff0c68a91bbfb768c9d63224af7b22530c9a85.1743265000.git.gabrielsantosdesouza@disroot.org
From: Andrew Wong <wongandj@icloud.com>

* gnu/packages/wm.scm (hyprland-plugin): New function.
* gnu/packages/wm.scm (borders-plus-plus): New variable.
* gnu/packages/wm.scm (csgo-vulkan-fix): New variable.
* gnu/packages/wm.scm (hyprbars): New variable.
* gnu/packages/wm.scm (hyprexpo): New variable.
* gnu/packages/wm.scm (hyprtrails): New variable.
* gnu/packages/wm.scm (hyprwinwrap): New variable.
* gnu/packages/wm.scm (xtra-dispatchers): New variable.

Change-Id: I923095e0d0cbc1c237e55a78dd2e9c1b1a3235df
---
gnu/packages/wm.scm | 76 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 76 insertions(+)

Toggle diff (96 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 2eefdb4c64..15b70df731 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -80,6 +80,7 @@
;;; Copyright © 2024 Jakob Kirsch <jakob.kirsch@web.de>
;;; Copyright © 2025 Tomáš Čech <sleep_walker@gnu.org>
;;; Copyright © 2025 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2025 Andrew Wong <wongandj@icloud.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -446,6 +447,81 @@ (define-public hyprland
`((upstream-name . "source")))
(license license:bsd-3)))
+(define hyprland-plugin
+ (lambda (plugin-name plugin-provision)
+ "Generate a packaged plugin from Hyprland's official plugin repository."
+ (package
+ (name plugin-name)
+ (version "0.47.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hyprwm/hyprland-plugins")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "06jydclvivd7xq0kwn6s19jhmmfqc5q649z7w4wqqj6jdhgkhayg"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list hyprland
+ libdrm
+ libinput
+ eudev
+ pango
+ pixman
+ wayland
+ libxkbcommon
+ mesa
+ hyprutils
+ hyprgraphics
+ aquamarine
+ hyprlang))
+ (arguments (list #:cmake cmake-3.30
+ #:tests? #f ; no tests.
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir #$plugin-name)))
+ (replace 'install-license-files
+ (lambda _ (install-file
+ "../LICENSE"
+ (string-append #$output "/share/doc/"
+ #$name "-"
+ #$version)))))))
+ (home-page (string-append "https://github.com/hyprwm/hyprland-plugins/"
+ plugin-name))
+ (synopsis (string-append "Hyprland plugin providing "
+ plugin-provision))
+ (description
+ (string-append "This is an official Hyprland plugin that provides "
+ plugin-provision "."))
+ (license license:bsd-3))))
+
+(define-public borders-plus-plus
+ (hyprland-plugin "borders-plus-plus" "extra borders around windows"))
+
+(define-public csgo-vulkan-fix
+ (let ((parent (hyprland-plugin "csgo-vulkan-fix"
+ "virtual native resolution reporting")))
+ (package (inherit parent) (inputs (modify-inputs (package-inputs parent)
+ (append xcb-util-wm))))))
+
+(define-public hyprbars
+ (hyprland-plugin "hyprbars" "window title bars"))
+
+(define-public hyprexpo
+ (hyprland-plugin "hyprexpo" "an exposé feature"))
+
+(define-public hyprtrails
+ (hyprland-plugin "hyprtrails" "trail effects behind windows"))
+
+(define-public hyprwinwrap
+ (hyprland-plugin "hyprwinwrap" "a window-as-wallpaper feature"))
+
+(define-public xtra-dispatchers
+ (hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
G
G
Gabriel Santos wrote on 29 Mar 09:16 -0700
[bug#76910] [PATCH v3 2/5] gnu: Add hyprscroller.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
6da979865c0b4161a5aac9f8d43ca205a1fcb14c.1743265000.git.gabrielsantosdesouza@disroot.org
From: Andrew Wong <wongandj@icloud.com>

* gnu/packages/wm.scm (hyprscroller): New variable.

Change-Id: I56c9984c7ce013f0ce4b22ec1f5df778fe17f736
---
gnu/packages/wm.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)

Toggle diff (62 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 15b70df731..38f492692f 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -522,6 +522,55 @@ (define-public hyprwinwrap
(define-public xtra-dispatchers
(hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+(define-public hyprscroller
+ (package
+ (name "hyprscroller")
+ ;; Upstream has no tags, but we can use the commits which add support for
+ ;; the corresponding Hyprland version (see ./hyprscoller.toml).
+ (version "0.48.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dawsers/hyprscroller")
+ (commit "5b62ca58790f8c2961da79af95efa458f6a814fe")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0bg2gcrdgz68r8anchhb46hn9l5pancr9h83a2fav96bwyhwx2cs"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)
+ (replace 'install
+ (lambda* _
+ (install-file "hyprscroller.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/dawsers/hyprscroller")
+ (synopsis "Hyprland plugin for a PaperWM-like scrolling layout")
+ (description
+ "Hyprscroller is a Hyprland layout plugin that creates a window layout
+similar to PaperWM. The plugin supports gaps, borders, decorations,
+special workspace, full screen modes, overview, marks, pinned columns,
+touchpad gestures, copying/pasting windows, trails/trailmarks, quick
+jump mode, and installation through hyprpm.")
+ (license license:expat)))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
G
G
Gabriel Santos wrote on 29 Mar 09:16 -0700
[bug#76910] [PATCH v3 3/5] gnu: Add hy3.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
93ae3e1d9a01adfb2a6b052830649430867a562e.1743265000.git.gabrielsantosdesouza@disroot.org
From: Andrew Wong <wongandj@icloud.com>

* gnu/packages/wm.scm (hy3): New variable.

Change-Id: Id42dc76ab3440c7c651933c60b1ae30f8055afed
---
gnu/packages/wm.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)

Toggle diff (52 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 38f492692f..aa8482f83a 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -571,6 +571,45 @@ (define-public hyprscroller
jump mode, and installation through hyprpm.")
(license license:expat)))
+(define-public hy3
+ (package
+ (name "hy3")
+ (version "0.48.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/outfoxxed/hy3")
+ (commit (string-append "hl" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qrkb946zz4675qk1n4l7ik5w6n7v6m38yq9g0lwhqxmddrp2j89"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:tests? #f))
+ (home-page "https://github.com/outfoxxed/hy3")
+ (synopsis "Hyprland plugin for an i3/sway-like manual tiling layout")
+ (description
+ "hy3 is a Hyprland plugin providing an i3/sway-like manual
+tiling layout, including node-based window manipulation and optional
+autotiling.")
+ (license license:gpl3)))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
G
G
Gabriel Santos wrote on 29 Mar 09:16 -0700
[bug#76910] [PATCH v3 4/5] gnu: Add hypr-darkwindow.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
3a744bac893c662ccfe3c14d88959f1d8c791a9d.1743265000.git.gabrielsantosdesouza@disroot.org
From: Andrew Wong <wongandj@icloud.com>

* gnu/packages/wm.scm (hypr-darkwindow): New variable.

Change-Id: Ide445c85047e17b5817580bde896a6c303e6a4cd
---
gnu/packages/wm.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)

Toggle diff (59 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index aa8482f83a..5271d85d20 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -610,6 +610,52 @@ (define-public hy3
autotiling.")
(license license:gpl3)))
+(define-public hypr-darkwindow
+ (package
+ (name "hypr-darkwindow")
+ (version "0.47.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/micha4w/Hypr-DarkWindow")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0g7zmzwa9w98wwygzl3wxgc6adh6h5ixrm3b8biimby2z5vwc2fz"))))
+ (build-system gnu-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* _
+ (install-file "out/hypr-darkwindow.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/micha4w/Hypr-DarkWindow")
+ (synopsis "Hyprland plugin that provides window color inversion")
+ (description
+ "This plugin adds the dispatchers @code{invertwindow WINDOW}
+and @code{invertactivewindow}, which invert the colors of the indicated
+window.")
+ (license license:expat)))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
G
G
Gabriel Santos wrote on 29 Mar 09:16 -0700
[bug#76910] [PATCH v3 5/5] gnu: Add hypr-dynamic-cursors.
(address . 76910@debbugs.gnu.org)(name . Gabriel Santos)(address . gabrielsantosdesouza@disroot.org)
53970531c25c076367a6a431ebd5b389a5f88f88.1743265000.git.gabrielsantosdesouza@disroot.org
* gnu/packages/wm.scm (hypr-dynamic-cursors): New variable.

Change-Id: I3cc75a076e6c8c65356444a98c0122af3bb76d0a
---
gnu/packages/wm.scm | 48 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)

Toggle diff (68 lines)
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
A
A
Andrew Wong wrote on 29 Mar 17:46 -0700
Re: [bug#76910] Plugin Build Conundrum
(name . Gabriel Santos)(address . gabrielsantosdesouza@disroot.org)
45ea218e-37b6-4b5a-97f6-e2df5c2156a4@icloud.com
I took a closer look at how Hyprland plugins are built, and I think more
work will need to be done on their build system. Outside of Guix,
plugins are built and installed by hyprland's userspace package manager,
hyprpm, which reads a .toml file in the repository root, finds the
plugin commit corresponding to the installed Hyprland's commit (or the
latest commit, if there are no corresponding commits), and checks it out
before compiling[1].

Meaning, our latest version (v3) of the patch series still has some
issues: for one, they are all currently pulling from the incorrect
commits, as they should be pulling from the commit specified in each
plugin's .toml file corresponding to the currently packaged Hyprland, or
from the latest git. For two, they will be a chore to maintain, as
updating them correctly will involve going into each repo and checking
their .toml file. Finally, they cannot be versioned easily, since we
would have the (often missing) version of the plugin as well as the
version the package is to be compiled for to contend with[2].

There are a few ways I've thought up for us to do this better:

1. We can create a "hyprland-plugin-build-system" or
"hyprland-plugin-phases" that emulates hyprpm by retreiving the commit
hash of the input hyprland package (my initial thought is that we could
use the full commit hash presented by `hyprland --systeminfo`), parsing
the .toml file, and switching to the correct commit before building
(maybe even parsing the build instructions given in the files?)

2. We can package (and heavily patch to run in build-space) hyprpm to
be used directly in the build process for plugins. Or, we could ask
hyprpm's developers to add features to let it be used in this way (e.g.
allowing the directories it uses to be customized) to reduce Guix'
maintenance load, but it may be a tough sell.

3. We can package hyprpm as a userspace tool and let it do its thing.
It's not like it provides nonfree binaries, anyways (but it does seem to
ask that the user pollute their profile with whatever build tools a
plugin uses--nothing `guix shell` can't smooth over.) This is what the
developers advise[3]. It feels very "un-guix" to let any binary build
happen outside of a hermetically-sealed build bubble, though, let alone
the idea of running software compiled from the "latest git".

Options 1 and 2 would make maintenance and versioning of the packages
much easier, as you'd just have to keep them on their latest git (or
version if they have their own version numbers) and the build system
would take care of the rest. Option 3 would mean having no plugin
packages to maintain in the first place.

Let me know what you all think, or if you have any ideas of your own.

- Andrew Wong

[1]
[2] I used to think I could version them with just the Hyprland
version they're meant for, but then I realized that later versions of
the plugins can change the commits corresponding to each version, so
e.g. the Jan. 2026 version of hyprscroller for hyprland 0.51.1 could be
different from the Mar. 2026 version of hyprscroller for hyprland
0.51.1. I mean, I guess it could be solved with some funky extended
version number scheme, but it wouldn't be elegant.
G
G
Gabriel Santos wrote on 29 Mar 18:08 -0700
88AF692A-5034-4E5E-9F7D-54A97F469B69@disroot.org
Toggle quote (2 lines)
>hyprland's userspace package manager, hyprpm

Not /another/ one!

Toggle quote (9 lines)
>1. We can create a "hyprland-plugin-build-system" or "hyprland-plugin-phases"
>that emulates hyprpm by retreiving the commit hash of
>the input hyprland package (my initial thought is that
>we could use the full commit hash presented by
>`hyprland --systeminfo`), parsing the .toml file,
>and switching to the correct commit before building
>(maybe even parsing the build instructions given in
>the files?)

This is the option I prefer. It is future-proof,
as it makes adding newer plugins a simpler process.

Though, couldn't we take over the package manager, as is
done in other build systems, such as cargo, go and node?

Even the main one, gnu-build-system, uses a command for
building, such as Make, instead of doing everything
manually.

I'm not sure I could help with this though, I don't think
I'm practical with Guix/Scheme to the point of creating a
whole new build system.

Toggle quote (10 lines)
>3. We can package hyprpm as a userspace tool and let it
>do its thing. It's not like it provides nonfree binaries,
>anyways (but it does seem to ask that the user pollute
>their profile with whatever build tools a plugin
>uses—nothing `guix shell` can't smooth over.) This
>is what the developers advise[3]. It feels very "un-guix"
>to let any binary build happen outside of a
>hermetically-sealed build bubble, though, let alone the
>idea of running software compiled from the "latest git".

This seems to be the most likely option. And it's not
/that/ strange for Guix, as we have a well functioning
version of Nix here, which I use with home-managr
to install whatever might not be available here.

Also, from the issue you linked, it would repsect the
author's wishes.

Toggle quote (2 lines)
--
Gabriel Santos
A
A
Andrew Wong wrote 6 days ago
[PATCH v3 0/5] Add Hyprland Plugins
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
cover.1743492882.git.wongandj@icloud.com
After investigatory efforts into each of the three options discussed earlier, I
have decided that it would be best to manually maintain the "compilation commit"
of each plugin for now, according to the plan laid out in the final patch of
this series. This decision was made after observing how 'hyprpm' is, at current,
simultaneously too lacking in features and flexibility to be integrated as a
guix-contolled build tool while also developing too fast to have confidence that
a re-implementation of its behavior won't be either obsoleted by changes in that
behavior or by hyprpm becoming a better implementation in a matter of months. I
also attempted to prepare hyprpm for straightforward user-land use just as it
is, but it seems to assume a more FHS-compliant filesystem than Guix provides;
not that I'd discourage a more experienced contributor from trying to adapt
it. I've written more about the specifics of how these packages will be
maintained and why in a comment added in the final patch of this series.

Also, I've removed hypr-dynamic-cursors, as I couldn't find a commit for it that
both builds and loads for Hyprland versions 0.48.0 and 0.48.1. Gabriel, if you
have any advice regarding this, it would be appreciated.

Let me know what you think,

Andrew Wong

Andrew Wong (5):
gnu: Add Hyprland plugins.
gnu: Add hyprscroller.
gnu: Add hy3.
gnu: Add hypr-darkwindow.
gnu: Add hyprland plugin maintainer note

gnu/packages/wm.scm | 238 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 238 insertions(+)


base-commit: bcd207005c4ae1b0ae11ebe932047218ffe6ee83
--
2.49.0
A
A
Andrew Wong wrote 6 days ago
[PATCH v3 1/5] gnu: Add Hyprland plugins.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
5b07039df322a6dc90f7b07978af3dcd9065e3e6.1743492882.git.wongandj@icloud.com
* gnu/packages/wm.scm (hyprland-plugin): New function.
* gnu/packages/wm.scm (borders-plus-plus): New variable.
* gnu/packages/wm.scm (csgo-vulkan-fix): New variable.
* gnu/packages/wm.scm (hyprbars): New variable.
* gnu/packages/wm.scm (hyprexpo): New variable.
* gnu/packages/wm.scm (hyprtrails): New variable.
* gnu/packages/wm.scm (hyprwinwrap): New variable.
* gnu/packages/wm.scm (xtra-dispatchers): New variable.

Change-Id: I923095e0d0cbc1c237e55a78dd2e9c1b1a3235df
---
gnu/packages/wm.scm | 79 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)

Toggle diff (99 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index b01f63629f..a951b24b2d 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -80,6 +80,7 @@
;;; Copyright © 2024 Jakob Kirsch <jakob.kirsch@web.de>
;;; Copyright © 2025 Tomáš Čech <sleep_walker@gnu.org>
;;; Copyright © 2025 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2025 Andrew Wong <wongandj@icloud.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -446,6 +447,84 @@ (define-public hyprland
`((upstream-name . "source")))
(license license:bsd-3)))
+(define hyprland-plugin
+ (lambda (plugin-name plugin-provision)
+ "Generate a packaged plugin from Hyprland's official plugin repository."
+ (let ((commit "1f332c09a2382cb23da0f69a6f504f8b33433831"))
+ (package
+ (name plugin-name)
+ ;; We will ignore the version tags in the repo, use the .toml file instead
+ ;; because it's a stronger promise of compatibility.
+ ;; See https://github.com/hyprwm/hyprland-plugins/issues/312
+ (version (git-version "0.48.1" "0" commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hyprwm/hyprland-plugins")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0sajd019n6qk17fz87p87dsbc28afwdv8h92i2f8qdmykp54gdwm"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list hyprland
+ libdrm
+ libinput
+ eudev
+ pango
+ pixman
+ wayland
+ libxkbcommon
+ mesa
+ hyprutils
+ hyprgraphics
+ aquamarine
+ hyprlang))
+ (arguments (list #:cmake cmake-3.30
+ #:tests? #f ; no tests.
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir #$plugin-name)))
+ (replace 'install-license-files
+ (lambda _ (install-file
+ "../LICENSE"
+ (string-append #$output "/share/doc/"
+ #$name "-"
+ #$version)))))))
+ (home-page (string-append "https://github.com/hyprwm/hyprland-plugins/"
+ plugin-name))
+ (synopsis (string-append "Hyprland plugin providing "
+ plugin-provision))
+ (description
+ (string-append "This is an official Hyprland plugin that provides "
+ plugin-provision "."))
+ (license license:bsd-3)))))
+
+(define-public borders-plus-plus
+ (hyprland-plugin "borders-plus-plus" "extra borders around windows"))
+
+(define-public csgo-vulkan-fix
+ (let ((parent (hyprland-plugin "csgo-vulkan-fix"
+ "virtual native resolution reporting")))
+ (package (inherit parent) (inputs (modify-inputs (package-inputs parent)
+ (append xcb-util-wm))))))
+
+(define-public hyprbars
+ (hyprland-plugin "hyprbars" "window title bars"))
+
+(define-public hyprexpo
+ (hyprland-plugin "hyprexpo" "an exposé feature"))
+
+(define-public hyprtrails
+ (hyprland-plugin "hyprtrails" "trail effects behind windows"))
+
+(define-public hyprwinwrap
+ (hyprland-plugin "hyprwinwrap" "a window-as-wallpaper feature"))
+
+(define-public xtra-dispatchers
+ (hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
A
A
Andrew Wong wrote 6 days ago
[PATCH v3 3/5] gnu: Add hy3.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
b6f97f0edbc6aed7428a1d4119424eeea60bf0df.1743492882.git.wongandj@icloud.com
* gnu/packages/wm.scm (hy3): New variable.

Change-Id: Id42dc76ab3440c7c651933c60b1ae30f8055afed
---
gnu/packages/wm.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)

Toggle diff (50 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index e5bfe97c33..399075e668 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -573,6 +573,43 @@ (define-public hyprscroller
jump mode, and installation through hyprpm.")
(license license:expat))))
+(define-public hy3
+ (let ((commit "4014433d1c3d1bf36c6684cff14c23d538337070"))
+ (package
+ (name "hy3")
+ (version (git-version "0.48.1" "0" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/outfoxxed/hy3")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qrkb946zz4675qk1n4l7ik5w6n7v6m38yq9g0lwhqxmddrp2j89"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments (list #:tests? #f))
+ (home-page "https://github.com/outfoxxed/hy3")
+ (synopsis "Hyprland plugin for an i3/sway-like manual tiling layout")
+ (description
+ "hy3 is a Hyprland plugin providing an i3/sway-like manual tiling layout,
+including node-based window manipulation and optional autotiling.")
+ (license license:gpl3))))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
A
A
Andrew Wong wrote 6 days ago
[PATCH v3 2/5] gnu: Add hyprscroller.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
bffa97155cdbfb1cd40435a34aa2bcfd2193bdb9.1743492882.git.wongandj@icloud.com
* gnu/packages/wm.scm (hyprscroller): New variable.

Change-Id: I56c9984c7ce013f0ce4b22ec1f5df778fe17f736
---
gnu/packages/wm.scm | 48 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)

Toggle diff (61 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index a951b24b2d..e5bfe97c33 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -525,6 +525,54 @@ (define-public hyprwinwrap
(define-public xtra-dispatchers
(hyprland-plugin "xtra-dispatchers" "extra dispatchers"))
+(define-public hyprscroller
+ (let ((commit "3f86916f3e9a583154b1be0af4e8a1ef1f7435b2"))
+ (package
+ (name "hyprscroller")
+ (version (git-version "0.48.1" "0" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dawsers/hyprscroller")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "03k6rkxm8qmvhwbr2d9jcqiagv1c81kls2p0aqrx49iqyzg2l1ls"))))
+ (build-system cmake-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)
+ (replace 'install
+ (lambda* _
+ (install-file "hyprscroller.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/dawsers/hyprscroller")
+ (synopsis "Hyprland plugin for a PaperWM-like scrolling layout")
+ (description
+ "Hyprscroller is a Hyprland layout plugin that creates a window layout
+similar to PaperWM. The plugin supports gaps, borders, decorations,
+special workspace, full screen modes, overview, marks, pinned columns,
+touchpad gestures, copying/pasting windows, trails/trailmarks, quick
+jump mode, and installation through hyprpm.")
+ (license license:expat))))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
A
A
Andrew Wong wrote 6 days ago
[PATCH v3 4/5] gnu: Add hypr-darkwindow.
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
9299aa751f75e6b631eff5e24a03ea59c646bfd6.1743492882.git.wongandj@icloud.com
* gnu/packages/wm.scm (hypr-darkwindow): New variable.

Change-Id: Ide445c85047e17b5817580bde896a6c303e6a4cd
---
gnu/packages/wm.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)

Toggle diff (60 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 399075e668..537150e138 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -610,6 +610,53 @@ (define-public hy3
including node-based window manipulation and optional autotiling.")
(license license:gpl3))))
+(define-public hypr-darkwindow
+ (let ((commit "2d2e7ebac5c52cb23f3cbf06052ceba47a73802d"))
+ (package
+ (name "hypr-darkwindow")
+ (version (git-version "0.48.1" "0" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/micha4w/Hypr-DarkWindow")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0avrc6bcgynvb0j5hw3fh585n971kxrk8bfgwpng6d5m6flav26z"))))
+ (build-system gnu-build-system)
+ (native-inputs (list gcc-14 pkg-config))
+ (inputs (list aquamarine
+ eudev
+ hyprgraphics
+ hyprlang
+ hyprutils
+ libdrm
+ libinput
+ libxkbcommon
+ mesa
+ pango
+ pixman
+ wayland
+ hyprland))
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* _
+ (install-file "out/hypr-darkwindow.so"
+ (string-append #$output "/lib")))))))
+ (home-page "https://github.com/micha4w/Hypr-DarkWindow")
+ (synopsis "Hyprland plugin that provides window color inversion")
+ (description
+ "This plugin adds the dispatchers @code{invertwindow WINDOW}
+and @code{invertactivewindow}, which invert the colors of the indicated
+window.")
+ (license license:expat))))
+
(define-public i3status
(package
(name "i3status")
--
2.49.0
A
A
Andrew Wong wrote 6 days ago
[PATCH v3 5/5] gnu: Add hyprland plugin maintainer note
(address . 76910@debbugs.gnu.org)(name . Andrew Wong)(address . wongandj@icloud.com)
bda094df8734d35c08cc1482a289c86442c7f9fa.1743492882.git.wongandj@icloud.com
Change-Id: I971940d515b1820532abbc31754d31d6f2efd515
---
gnu/packages/wm.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)

Toggle diff (40 lines)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 537150e138..03ccc0dce6 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -447,6 +447,33 @@ (define-public hyprland
`((upstream-name . "source")))
(license license:bsd-3)))
+
+;; READ THIS regarding Hyprland plugin versioning
+;;
+;; Each Hyprland plugin contains a .toml file with an entry called `commit_pins'
+;; containing pairs of commit hashes. The first hash is Hyprland's commit hash, and
+;; the second hash is the hash of the plugin repository which hyprpm would switch to
+;; before compiling the plugin[1]. Therefore, to remain consistent with hyprpm, when
+;; upgrading a plugin, maintainers should check its .toml file and use the hash
+;; corresponding to the packaged Hyprland version. If Hyprland's packaged commit is
+;; not listed, packagers should use the latest working commit. For plugins that lack
+;; their own version numbers, we will use git-version, with the newest supported
+;; Hyprland version as the VERSION argument.
+;;
+;; A flaw with this way of doing things is that the correct version of a plugin will
+;; not automatically be built if a transformation is used to select a different
+;; version of Hyprland from what is packaged, or if Hyprland is updated without its
+;; plugins. However, with the rapid pace (as of 1 Apr 2025) of Hyprland and related
+;; softwares, we can reasonably hope that soon, either A) hyprpm will develop enough
+;; to become usable as a Guix-managed build tool, or B) hyprpm will become obsolete
+;; by the introduction of a stable, versioned Hyprland API.
+;;
+;; You can safely test plugins by launching hyprland from a shell (wayland sessions
+;; can run within each other) and loading the plugin into it using hyprctl's
+;; '--instance' option and 'plugin load' command.
+;;
+;; [1] https://wiki.hyprland.org/Plugins/Development/Plugin-Guidelines/#commit-pins
+
(define hyprland-plugin
(lambda (plugin-name plugin-provision)
"Generate a packaged plugin from Hyprland's official plugin repository."
--
2.49.0
G
G
Gabriel Santos wrote 5 days ago
Re: [bug#76910] [PATCH v3 0/5] Add Hyprland Plugins
2B543D58-843C-4254-95D1-5AC92AACBE42@disroot.org
Toggle quote (4 lines)
>Also, I've removed hypr-dynamic-cursors, as I couldn't find a commit for it that
>both builds and loads for Hyprland versions 0.48.0 and 0.48.1. Gabriel, if you
>have any advice regarding this, it would be appreciated.

I don't really have any advice on this.

If it fails to build and load, it's best to wait until a
version for 0.48.1 is released to add it back.

--
Gabriel Santos
G
G
Gabriel Santos wrote 5 days ago
AF7B525B-948A-44A6-A09B-8864E276F896@disroot.org
Toggle quote (3 lines)
>If it fails to build and load, it's best to wait until a
>version for 0.48.1 is released to add it back.

Actially, I just had an idea: why not just patch the TOML file
to support 0.48.1? That's what I'm trying right now, will
report on results later.

--
Gabriel Santos
G
G
Gabriel Santos wrote 5 days ago
2ACB73B7-CF57-4866-BF26-0D2F7020C5D3@disroot.org
Toggle quote (4 lines)
>Actually, I just had an idea: why not just patch the TOML file
>to support 0.48.1? That's what I'm trying right now, will
>report on results later.

Latest commit[1] doesn't build, because it uses a new feature.

Second to latest[2] results in an instant crash.


--
Gabriel Santos
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 76910@patchwise.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 76910
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch