diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | cbb3eb81c3d4cf419d36a59e58aaa3e6d7a00630 (patch) | |
tree | e320e0b76eb71052bd2107c0940efd7b551cc95d /unlustig.scm | |
parent | 28ede208a651f4c6a0ae7f1da0e9ea2409d162c3 (diff) | |
download | guix-techchud-cbb3eb81c3d4cf419d36a59e58aaa3e6d7a00630.tar.gz guix-techchud-cbb3eb81c3d4cf419d36a59e58aaa3e6d7a00630.tar.bz2 guix-techchud-cbb3eb81c3d4cf419d36a59e58aaa3e6d7a00630.zip |
add rust-x11-clipboard@0.5
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index cbbc814..2492a46 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -978,3 +978,22 @@ the OS-level clipboard.") "This package provides Safe Rust bindings to the Android NDK.") (license (list license:expat license:asl2.0)))) +(define-public rust-x11-clipboard-0.5 + (package + (name "rust-x11-clipboard") + (version "0.5.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "x11-clipboard" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0g35qcmy7ayp3clbqnvvqjc7h02y9q2z294868c6mj0ap2vnhc27")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-xcb" ,rust-xcb-0.10)))) + (home-page "https://github.com/quininer/x11-clipboard") + (synopsis "x11 clipboard support for Rust") + (description "This package provides x11 clipboard support for Rust.") + (license license:expat))) + |