diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:35:16 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:35:16 -0600 |
commit | 3bb612ab9e2fdc4ec6f369da2b6f30b716bb84e9 (patch) | |
tree | 03b5efc57302d873ba723e976b0a79072f690cb1 | |
parent | b82e49a417f5dec93e07c730d8b87a21b68aff54 (diff) | |
download | guix-msglm-3bb612ab9e2fdc4ec6f369da2b6f30b716bb84e9.tar.gz guix-msglm-3bb612ab9e2fdc4ec6f369da2b6f30b716bb84e9.tar.bz2 guix-msglm-3bb612ab9e2fdc4ec6f369da2b6f30b716bb84e9.zip |
add rust-wayland-window@0.2
-rw-r--r-- | unlustig.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 8956f90..b233020 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1898,3 +1898,28 @@ See winapi for types and constants.") "This package provides Keyboard mapping utility for wayland-client using libxkbcommon.") (license license:expat))) +(define-public rust-wayland-window-0.2 + (package + (name "rust-wayland-window") + (version "0.2.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "wayland-window" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0k48mmkmpkj3jaj60j85raigh0ngk1yzp2fq48ac5jb3m39nk6rh")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-byteorder" ,rust-byteorder-0.5) + ("rust-tempfile" ,rust-tempfile-2) + ("rust-wayland-client" ,rust-wayland-client-0.5)) + #:cargo-development-inputs (("rust-wayland-client" ,rust-wayland-client-0.5)))) + (home-page "https://github.com/Smithay/wayland-window") + (synopsis + "minimalistic window-decorations library built on top of wayland-client.") + (description + "This package provides a minimalistic window-decorations library built on top of +wayland-client.") + (license license:expat))) + |