summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-11-18 11:02:39 -0500
committerFreya Murphy <freya@freyacat.org>2024-11-18 11:02:39 -0500
commit7ae942c80f25c537986a611efd0af427f233b9a2 (patch)
tree2bf1799cdf95a3ac08c766f97f417024beab86e4
parentupdate aquamarine 0.5.0 (diff)
downloadsakura-7ae942c80f25c537986a611efd0af427f233b9a2.tar.gz
sakura-7ae942c80f25c537986a611efd0af427f233b9a2.tar.bz2
sakura-7ae942c80f25c537986a611efd0af427f233b9a2.zip
update hyprland v0.45.1
-rw-r--r--sakura/packages/hypr.scm30
1 files changed, 18 insertions, 12 deletions
diff --git a/sakura/packages/hypr.scm b/sakura/packages/hypr.scm
index e3c27cc..f6c65a6 100644
--- a/sakura/packages/hypr.scm
+++ b/sakura/packages/hypr.scm
@@ -253,7 +253,7 @@ for c++.")
(define-public hyprland
(package
(name "hyprland")
- (version "0.45.0")
+ (version "0.45.1")
(source
(origin
(method git-fetch)
@@ -270,7 +270,7 @@ for c++.")
"subprojects"))))
(file-name (git-file-name name version))
(sha256
- (base32 "1wawqdc6wjk724b5drsh3nxhmss9ksk2ks94490lgf22wmf3ck3g"))))
+ (base32 "0ffv7bzv0kydkdjzh47hnzgfyld9x16iqgsf2p8ibmay5vp0xd82"))))
(build-system cmake-build-system)
(arguments
(list #:cmake cmake-3.30
@@ -575,22 +575,28 @@ extra portals specific to Hyprland, mostly for window sharing.")
(synopsis "i3 / sway like layout for hyprland.")
(description "Hyprland plugin for an i3 / sway like manual tiling layout")))
+(define %hyprland-plugins-version
+ "0.45.1")
+
+(define %hyprland-plugins-commit
+ "95fee7d0a7fa48828f5e9da1af6dc1fd7adb360d")
+
(define-syntax hyprland-plugin-impl
(syntax-rules ()
((_ plugin)
(package
(name (string-append "hyprland-plugin-" plugin))
- (version "0.45.0")
+ (version %hyprland-plugins-version)
(source
(origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/hyprwm/hyprland-plugins.git")
- (commit (string-append "v" version))))
- (sha256
- (base32
- "0nfxcr6mxjvrja0jdsrrlyixfaaqdnfszp7bh8x8cqz9qp167sc4"))
- (file-name (git-file-name name version))))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hyprwm/hyprland-plugins.git")
+ (commit %hyprland-plugins-commit)))
+ (sha256
+ (base32
+ "10s0pmbc9qmh7v5ja4sx0b4gkyynnydhh1ffmdk81q76qvx7qqgr"))
+ (file-name (git-file-name name version))))
(build-system cmake-build-system)
(arguments
(list #:cmake cmake-3.30
@@ -641,7 +647,7 @@ extra portals specific to Hyprland, mostly for window sharing.")
(define-public hyprland-plugins
(package
(name "hyprland-plugins")
- (version "0.45.0")
+ (version %hyprland-plugins-version)
(source #f)
(build-system trivial-build-system)
(arguments '(#:builder (begin (mkdir %output) #t)))