update hyprland v0.45.1
This commit is contained in:
parent
7e8949236b
commit
7ae942c80f
1 changed files with 18 additions and 12 deletions
|
@ -253,7 +253,7 @@ for c++.")
|
||||||
(define-public hyprland
|
(define-public hyprland
|
||||||
(package
|
(package
|
||||||
(name "hyprland")
|
(name "hyprland")
|
||||||
(version "0.45.0")
|
(version "0.45.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -270,7 +270,7 @@ for c++.")
|
||||||
"subprojects"))))
|
"subprojects"))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1wawqdc6wjk724b5drsh3nxhmss9ksk2ks94490lgf22wmf3ck3g"))))
|
(base32 "0ffv7bzv0kydkdjzh47hnzgfyld9x16iqgsf2p8ibmay5vp0xd82"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:cmake cmake-3.30
|
(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.")
|
(synopsis "i3 / sway like layout for hyprland.")
|
||||||
(description "Hyprland plugin for an i3 / sway like manual tiling layout")))
|
(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
|
(define-syntax hyprland-plugin-impl
|
||||||
(syntax-rules ()
|
(syntax-rules ()
|
||||||
((_ plugin)
|
((_ plugin)
|
||||||
(package
|
(package
|
||||||
(name (string-append "hyprland-plugin-" plugin))
|
(name (string-append "hyprland-plugin-" plugin))
|
||||||
(version "0.45.0")
|
(version %hyprland-plugins-version)
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/hyprwm/hyprland-plugins.git")
|
(url "https://github.com/hyprwm/hyprland-plugins.git")
|
||||||
(commit (string-append "v" version))))
|
(commit %hyprland-plugins-commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0nfxcr6mxjvrja0jdsrrlyixfaaqdnfszp7bh8x8cqz9qp167sc4"))
|
"10s0pmbc9qmh7v5ja4sx0b4gkyynnydhh1ffmdk81q76qvx7qqgr"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:cmake cmake-3.30
|
(list #:cmake cmake-3.30
|
||||||
|
@ -641,7 +647,7 @@ extra portals specific to Hyprland, mostly for window sharing.")
|
||||||
(define-public hyprland-plugins
|
(define-public hyprland-plugins
|
||||||
(package
|
(package
|
||||||
(name "hyprland-plugins")
|
(name "hyprland-plugins")
|
||||||
(version "0.45.0")
|
(version %hyprland-plugins-version)
|
||||||
(source #f)
|
(source #f)
|
||||||
(build-system trivial-build-system)
|
(build-system trivial-build-system)
|
||||||
(arguments '(#:builder (begin (mkdir %output) #t)))
|
(arguments '(#:builder (begin (mkdir %output) #t)))
|
||||||
|
|
Loading…
Reference in a new issue