mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05: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 @@ (define-public wev
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue