gnu: Add rust-wayland-commons-0.28.
* gnu/packages/crates-graphics.scm (rust-wayland-commons-0.28): New variable. (rust-wayland-commons-0.23): Inherit from above.
This commit is contained in:
parent
330377cb2a
commit
06c16eed14
1 changed files with 28 additions and 8 deletions
|
@ -2044,8 +2044,35 @@ the wayland protocol, client side.")
|
||||||
(("rust-byteorder" ,rust-byteorder-1)
|
(("rust-byteorder" ,rust-byteorder-1)
|
||||||
("rust-tempfile" ,rust-tempfile-3))))))
|
("rust-tempfile" ,rust-tempfile-3))))))
|
||||||
|
|
||||||
|
(define-public rust-wayland-commons-0.28
|
||||||
|
(package
|
||||||
|
(name "rust-wayland-commons")
|
||||||
|
(version "0.28.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "wayland-commons" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0mid1sgy3bmiywnrhsr31b8w6zvk1ll2ci2as15ddv8pczvm0128"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-nix" ,rust-nix-0.18)
|
||||||
|
("rust-once-cell" ,rust-once-cell-1)
|
||||||
|
("rust-smallvec" ,rust-smallvec-1)
|
||||||
|
("rust-wayland-sys" ,rust-wayland-sys-0.28))))
|
||||||
|
(home-page "https://github.com/smithay/wayland-rs")
|
||||||
|
(synopsis "Types and structures used by wayland-client and wayland-server")
|
||||||
|
(description
|
||||||
|
"This package provides common types and structures used by wayland-client
|
||||||
|
and wayland-server.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-wayland-commons-0.23
|
(define-public rust-wayland-commons-0.23
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-wayland-commons-0.28)
|
||||||
(name "rust-wayland-commons")
|
(name "rust-wayland-commons")
|
||||||
(version "0.23.6")
|
(version "0.23.6")
|
||||||
(source
|
(source
|
||||||
|
@ -2057,17 +2084,10 @@ the wayland protocol, client side.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1nyvcs6xxxzqgh0wvc7z0fgi89bf3h9p4qrbf77bnfbwlb8v0rmv"))))
|
"1nyvcs6xxxzqgh0wvc7z0fgi89bf3h9p4qrbf77bnfbwlb8v0rmv"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-nix" ,rust-nix-0.14)
|
(("rust-nix" ,rust-nix-0.14)
|
||||||
("rust-wayland-sys" ,rust-wayland-sys-0.23))))
|
("rust-wayland-sys" ,rust-wayland-sys-0.23))))))
|
||||||
(home-page "https://github.com/smithay/wayland-rs")
|
|
||||||
(synopsis
|
|
||||||
"Common types and structures used by wayland-client and wayland-server")
|
|
||||||
(description
|
|
||||||
"Common types and structures used by wayland-client and wayland-server.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-wayland-commons-0.21
|
(define-public rust-wayland-commons-0.21
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue