mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
86fb0e039b
commit
6c4f304393
1 changed files with 31 additions and 0 deletions
|
@ -1557,6 +1557,37 @@ sent to a Wayland window, such as key presses. It is analogous to the X11 tool
|
||||||
XEv.")
|
XEv.")
|
||||||
(license license:expat)))
|
(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
|
(define-public wtype
|
||||||
(package
|
(package
|
||||||
(name "wtype")
|
(name "wtype")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue