me
/
guix
Archived
1
0
Fork 0

gnu: Add wlr-protocols.

* gnu/packages/freedesktop.scm (wlr-protocols): New variable.

Change-Id: Ia8daffd7219b7bd573ae54e7cfc5ec6b6a5f4052
Modified-by: Hilton Chain <hako@ultrarare.space>
Signed-off-by: Hilton Chain <hako@ultrarare.space>
master
Julian Flake 2024-03-14 12:26:46 +01:00 committed by Hilton Chain
parent 86fb0e039b
commit 6c4f304393
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292
1 changed files with 31 additions and 0 deletions

View File

@ -1557,6 +1557,37 @@ sent to a Wayland window, such as key presses. It is analogous to the X11 tool
XEv.")
(license license:expat)))
(define-public wlr-protocols
(let ((commit "2b8d43325b7012cc3f9b55c08d26e50e42beac7d")
(revision "0"))
(package
(name "wlr-protocols")
(version (git-version "1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.freedesktop.org/wlroots/wlr-protocols.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "17blwww6rcrahwc6h6j68gh6wjbj14if3mihpxymfdw5pwl72rav"))))
(build-system gnu-build-system)
(arguments
(list #:make-flags
#~(list (string-append "PREFIX=" #$output))
#:phases
#~(modify-phases %standard-phases
(delete 'configure))))
(native-inputs (list wayland)) ;For wayland-scanner.
(home-page "https://gitlab.freedesktop.org/wlroots/wlr-protocols")
(synopsis
"Wayland protocols designed for use in wlroots (and other compositors)")
(description
"This package provides Wayland protocols designed for use in wlroots (and
other compositors).")
(license license:expat))))
(define-public wtype
(package
(name "wtype")