From 7ae942c80f25c537986a611efd0af427f233b9a2 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 18 Nov 2024 11:02:39 -0500 Subject: [PATCH] update hyprland v0.45.1 --- sakura/packages/hypr.scm | 30 ++++++++++++++++++------------ 1 file 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)))