mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: wayland-protocols: Update package definition.
* gnu/packages/freedesktop.scm (wayland-protocols) [version]: Update to 1.20. [source]<origin>[sha256]: Modify base32. [description]: Modify. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
84fde8ab7a
commit
33f6379d01
1 changed files with 16 additions and 12 deletions
|
@ -830,22 +830,26 @@ (define-public wayland
|
|||
(define-public wayland-protocols
|
||||
(package
|
||||
(name "wayland-protocols")
|
||||
(version "1.18")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://wayland.freedesktop.org/releases/"
|
||||
"wayland-protocols-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1cvl93h83ymbfhb567jv5gzyq08181w7c46rsw4xqqqpcvkvfwrx"))))
|
||||
(version "1.20")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"https://wayland.freedesktop.org/releases/"
|
||||
"wayland-protocols-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1rsdgvkkvxs3cjhpl6agvbkm53vm7k8rg127j9y2vn33m2hvg0lp"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("wayland" ,wayland)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("wayland" ,wayland)))
|
||||
(synopsis "Wayland protocols")
|
||||
(description "This package contains XML definitions of the Wayland protocols.")
|
||||
(description "Wayland-Protocols contains Wayland protocols that add
|
||||
functionality not available in the Wayland core protocol. Such protocols either
|
||||
add completely new functionality, or extend the functionality of some other
|
||||
protocol either in Wayland core, or some other protocol in wayland-protocols.")
|
||||
(home-page "https://wayland.freedesktop.org")
|
||||
(license license:expat)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue