mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-03-10 08:54:36 +00:00
rosenthal: Add hyprcursor.
* rosenthal/packages/wm.scm (hyprcursor): New variable.
This commit is contained in:
parent
187aca7883
commit
21dd77b5bb
@ -15,6 +15,7 @@
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages gl)
|
||||
@ -141,6 +142,29 @@ command line tool called @code{udcli} that incorporates the library.")
|
||||
(modify-inputs (package-native-inputs base)
|
||||
(replace "hwdata" `(,hwdata-for-hyprland "out")))))))
|
||||
|
||||
(define-public hyprcursor
|
||||
(package
|
||||
(name "hyprcursor")
|
||||
(version "0.1.5")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/hyprcursor")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0252abb9yjskclhxjc2ar6r2x9pfllpbas7rfp4597i2gnxrzbvv"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments (list #:tests? #f)) ;FIXME
|
||||
(inputs (list cairo-for-hyprland hyprlang librsvg libzip))
|
||||
(native-inputs (list gcc-13 pkg-config))
|
||||
(home-page "https://hyprland.org/")
|
||||
(synopsis "Hyprland cursor format, library and utilities")
|
||||
(description
|
||||
"This package provides Hyprland cursor format, library and utilities.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public hyprland-protocols
|
||||
(package
|
||||
(name "hyprland-protocols")
|
||||
|
Loading…
Reference in New Issue
Block a user