diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-04 12:07:43 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:22 +0200 |
commit | 141b21897ace0986698fa8dd973cd977a870123d (patch) | |
tree | 03ac847bc4bbc9835c3d88f4dc2f468e427a3b75 /gnu | |
parent | cd6e10b0a9f11b7803deeac1fafe853bfd29ca7d (diff) | |
download | guix-141b21897ace0986698fa8dd973cd977a870123d.tar.gz guix-141b21897ace0986698fa8dd973cd977a870123d.zip |
gnu: Add rust-wayland-protocols-plasma-0.2.
* gnu/packages/crates-graphics.scm (rust-wayland-protocols-plasma-0.2): New variable.
Change-Id: Ibcb8d3d6d70683122001ad87d80193e23a2b49ee
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-graphics.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index 9d939d2986..75fec0595d 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -4022,6 +4022,30 @@ extensions.") ("rust-wayland-sys" ,rust-wayland-sys-0.21) ("rust-wayland-scanner" ,rust-wayland-scanner-0.21)))))) +(define-public rust-wayland-protocols-plasma-0.2 + (package + (name "rust-wayland-protocols-plasma") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "wayland-protocols-plasma" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0yglbxd4ka8284k0j0ssh9hf6wd9qp2n0s2qrsdymyaz258kb013")))) + (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-scanner" ,rust-wayland-scanner-0.31) + ("rust-wayland-server" ,rust-wayland-server-0.31)))) + (home-page "https://github.com/smithay/wayland-rs") + (synopsis "Generated API for the Plasma wayland protocol extensions") + (description "Generated API for the Plasma wayland protocol extensions.") + (license license:expat))) + (define-public rust-wayland-protocols-wlr-0.2 (package (name "rust-wayland-protocols-wlr") |