diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-11-14 10:29:58 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:05:22 +0200 |
commit | 9418a280425a1b3866da1897e18e8628c400caeb (patch) | |
tree | 8e64b119f2d780b72131c2a6bdff0add2df27971 /gnu/packages/crates-graphics.scm | |
parent | 88706ebade07486dd6c91aa66f6cc42cde5ef292 (diff) | |
download | guix-9418a280425a1b3866da1897e18e8628c400caeb.tar.gz guix-9418a280425a1b3866da1897e18e8628c400caeb.zip |
gnu: Add rust-wayland-protocols-wlr-0.3.
* gnu/packages/crates-graphics.scm (rust-wayland-protocols-wlr-0.3): New
variable.
(rust-wayland-protocols-wlr-0.2): Inherit from
rust-wayland-protocols-wlr-0.3.
Change-Id: I825cd9dd869fef7d56d4a61d3dc7aa194ab5c889
Diffstat (limited to 'gnu/packages/crates-graphics.scm')
-rw-r--r-- | gnu/packages/crates-graphics.scm | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index 4bacb12939..1e0a5d614a 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -5081,23 +5081,23 @@ protocol extensions.") ("rust-wayland-scanner" ,rust-wayland-scanner-0.31) ("rust-wayland-server" ,rust-wayland-server-0.31)))))) -(define-public rust-wayland-protocols-wlr-0.2 +(define-public rust-wayland-protocols-wlr-0.3 (package (name "rust-wayland-protocols-wlr") - (version "0.2.0") + (version "0.3.5") (source (origin (method url-fetch) (uri (crate-uri "wayland-protocols-wlr" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1mjww9psk2nc5hm2q4s3qas30rbzfg1sb6qgw518fbbcdfvn27xd")))) + (base32 "08j0xfpfqv6kzbfzmdv6crfzalxbxc2n5m9hc4qkqg4jrpv14bkq")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2) ("rust-wayland-backend" ,rust-wayland-backend-0.3) ("rust-wayland-client" ,rust-wayland-client-0.31) - ("rust-wayland-protocols" ,rust-wayland-protocols-0.31) + ("rust-wayland-protocols" ,rust-wayland-protocols-0.32) ("rust-wayland-scanner" ,rust-wayland-scanner-0.31) ("rust-wayland-server" ,rust-wayland-server-0.31)))) (home-page "https://github.com/smithay/wayland-rs") @@ -5106,6 +5106,26 @@ protocol extensions.") protocol extensions.") (license license:expat))) +(define-public rust-wayland-protocols-wlr-0.2 + (package + (inherit rust-wayland-protocols-wlr-0.3) + (name "rust-wayland-protocols-wlr") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "wayland-protocols-wlr" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1mjww9psk2nc5hm2q4s3qas30rbzfg1sb6qgw518fbbcdfvn27xd")))) + (arguments + `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2) + ("rust-wayland-backend" ,rust-wayland-backend-0.3) + ("rust-wayland-client" ,rust-wayland-client-0.31) + ("rust-wayland-protocols" ,rust-wayland-protocols-0.31) + ("rust-wayland-scanner" ,rust-wayland-scanner-0.31) + ("rust-wayland-server" ,rust-wayland-server-0.31)))))) + (define-public rust-wayland-protocols-wlr-0.1 (package (inherit rust-wayland-protocols-wlr-0.2) |