diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-04-23 16:13:26 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-05-07 19:29:34 +0300 |
commit | 1196e53f2ddafccefe80afbed237797105d0f18a (patch) | |
tree | 62b6f15a0b4895b2840dc87068dad986e928a215 /gnu | |
parent | 37eed045b3cb7d55160b2ab9492de95a48854e0b (diff) | |
download | guix-1196e53f2ddafccefe80afbed237797105d0f18a.tar.gz |
gnu: rust-wayland-egl-0.29: Update to 0.29.5.
* gnu/packages/crates-io.scm (rust-wayland-egl-0.29): Update to 0.29.5. [cargo-inputs]: Add rust-wayland-client-0.29, rust-wayland-sys-0.29.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-graphics.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index b27df7685f..67126f7e62 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -2752,15 +2752,19 @@ properly display animated cursors.") (define-public rust-wayland-egl-0.29 (package (name "rust-wayland-egl") - (version "0.29.4") + (version "0.29.5") (source (origin (method url-fetch) (uri (crate-uri "wayland-egl" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0flslbp8q4nv3hcw941vapn3jh6y7glqaqv63h1mjaqnxrlisa43")))) + (base32 "0z8hwixv5kj201p2pnbdwxbl4s9hz5cxd8i1v0k2j08sz14yjba0")))) (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-wayland-client" ,rust-wayland-client-0.29) + ("rust-wayland-sys" ,rust-wayland-sys-0.29)))) (inputs (list rust-wayland-client-0.29 rust-wayland-sys-0.29)) ;; For the PKG_CONFIG_PATH environment variable. |