.
This commit is contained in:
parent
282e8e2851
commit
3022a84999
2 changed files with 70 additions and 29 deletions
|
@ -192,6 +192,37 @@ and libliftoff will pick hardware planes for these layers if possible.")
|
|||
|
||||
;;; Low-level Hyprland stuff
|
||||
|
||||
(define-public wlroots-hyprland
|
||||
(package
|
||||
(inherit wlroots)
|
||||
(name "wlroots-hyprland")
|
||||
(version "0.39.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/wlroots-hyprland")
|
||||
(commit "5c1d51c5a2793480f5b6c4341ad0797052aec2ea")))
|
||||
(sha256
|
||||
(base32
|
||||
"0gy0g0kxb3q1wjqrypnvmrxcb4ld3advikchygpwpfp4s9v0mmvd"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
(modify-inputs
|
||||
(package-inputs wlroots)
|
||||
(replace "hwdata" hwdata-for-hyprland)
|
||||
(prepend pkg-config)
|
||||
(append utils:cmake)
|
||||
(append gcc-13)
|
||||
(append git)))
|
||||
(propagated-inputs
|
||||
(modify-inputs
|
||||
(package-propagated-inputs wlroots)
|
||||
(prepend libdrm-for-hyprland)
|
||||
(replace "libinput-minimal" libinput-minimal-1.24.0)
|
||||
(replace "wayland-protocols" wayland-protocols-for-hyprland)))))
|
||||
|
||||
(define-public hyprcursor
|
||||
(package
|
||||
(inherit rosenthal:hyprcursor)
|
||||
|
@ -296,6 +327,7 @@ and libliftoff will pick hardware planes for these layers if possible.")
|
|||
pango
|
||||
pciutils
|
||||
tomlplusplus
|
||||
wlroots-hyprland
|
||||
wayland
|
||||
wayland-protocols-for-hyprland))
|
||||
(home-page "https://hyprland.org")
|
||||
|
@ -345,8 +377,10 @@ more.")
|
|||
(name "hyprland-official-plugin")
|
||||
(version "e9457e08ca3ff16dc5a815be62baf9e18b539197")
|
||||
(source
|
||||
(origin (method git-fetch)
|
||||
(uri (git-reference
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hyprland-plugins")
|
||||
(commit version)))
|
||||
(sha256
|
||||
|
@ -466,7 +500,8 @@ more.")
|
|||
(name "hyprland-plugin-hyprsplit")
|
||||
(version "6b9db62fab91066bb678f14198771b8e8cc12a8f")
|
||||
(source
|
||||
(origin (method git-fetch)
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/shezdy/hyprsplit.git")
|
||||
|
@ -509,7 +544,8 @@ more.")
|
|||
(inherit hyprland-plugin-hyprsplit)
|
||||
(name "hyprland-xwayland-plugin-hyprsplit")
|
||||
(propagated-inputs
|
||||
(modify-inputs (package-propagated-inputs hyprland-plugin-hyprsplit)
|
||||
(modify-inputs
|
||||
(package-propagated-inputs hyprland-plugin-hyprsplit)
|
||||
(replace "hyprland" hyprland-xwayland)))))
|
||||
|
||||
;;; Hypr Ecosystem
|
||||
|
@ -576,10 +612,13 @@ more.")
|
|||
(name "hyprpicker")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin (method git-fetch)
|
||||
(uri (git-reference
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hyprpicker")
|
||||
(commit (string-append "v" version))))
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(file-name
|
||||
(git-file-name name version))
|
||||
(sha256
|
||||
|
@ -589,15 +628,16 @@ more.")
|
|||
(native-inputs
|
||||
(list utils:cmake
|
||||
pkg-config))
|
||||
(inputs
|
||||
(propagated-inputs
|
||||
(list cairo
|
||||
hyprland
|
||||
rosenthal:hyprland-protocols
|
||||
pango
|
||||
libjpeg-turbo
|
||||
libxkbcommon
|
||||
wayland
|
||||
wayland-protocols-for-hyprland
|
||||
wayland))
|
||||
wlroots-hyprland))
|
||||
(home-page "https://github.com/hyprwm/hyprpicker")
|
||||
(synopsis "A wlroots-compatible Wayland color picker that does not suck")
|
||||
(description "A wlroots-compatible Wayland color picker that does not suck.")
|
||||
|
|
|
@ -75,7 +75,8 @@
|
|||
(description "This is the VM used by Pharo.")
|
||||
(license license:expat)))
|
||||
|
||||
(define pharo-vm-10.2
|
||||
#;
|
||||
(define-public pharo-vm-10.2
|
||||
(package
|
||||
(name "pharo-vm")
|
||||
(version "10.2.0")
|
||||
|
|
Loading…
Reference in a new issue