diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-14 12:23:09 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:41:20 +0300 |
commit | 7fb4dcb94c5f2f9ff36fa05a35ec2f9040f2e1f7 (patch) | |
tree | 69a5841d04a25bc60184928ce63c5ab7e23f8598 | |
parent | 53f62ae1edf1a284623a5f01e52c817258c6a179 (diff) | |
download | guix-7fb4dcb94c5f2f9ff36fa05a35ec2f9040f2e1f7.tar.gz guix-7fb4dcb94c5f2f9ff36fa05a35ec2f9040f2e1f7.zip |
gnu: rust-wayland-backend-0.3: Update to 0.3.3.
* gnu/packages/crates-graphics.scm (rust-wayland-backend-0.3): Update to
0.3.3.
[cargo-inputs]: Add rust-rustix-0.38. Remove rust-nix-0.26.
Change-Id: Ie9e2d43be30c85d5b0cea3e045696cf1786a9f03
-rw-r--r-- | gnu/packages/crates-graphics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index 117b4f5603..3e8eca4095 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -3848,22 +3848,22 @@ applications.") (define-public rust-wayland-backend-0.3 (package (name "rust-wayland-backend") - (version "0.3.2") + (version "0.3.3") (source (origin (method url-fetch) (uri (crate-uri "wayland-backend" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1r7vz56z6ixfbljraxl4q59g43jfb6i9qkaksi704pzlfgfjs58r")))) + (base32 "0h4s8nfrl1q8xys1409lfwkb70cdh81c0pvzr1s69mwhrrhzll4x")))) (build-system cargo-build-system) (arguments `(#:tests? #f ; use of undeclared crate or module `wayland_scanner` #:cargo-inputs (("rust-cc" ,rust-cc-1) ("rust-downcast-rs" ,rust-downcast-rs-1) ("rust-log" ,rust-log-0.4) - ("rust-nix" ,rust-nix-0.26) ("rust-raw-window-handle" ,rust-raw-window-handle-0.5) + ("rust-rustix" ,rust-rustix-0.38) ("rust-scoped-tls" ,rust-scoped-tls-1) ("rust-smallvec" ,rust-smallvec-1) ("rust-wayland-sys" ,rust-wayland-sys-0.31)) |