summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 13:08:45 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 13:08:45 -0600
commitf663706331f585fa183f9d5176ec57d108628d0f (patch)
treee320e0b76eb71052bd2107c0940efd7b551cc95d /unlustig.scm
parent5a1a8244d8019501b099baf566d743d5fa0fe7ad (diff)
downloadguix-msglm-f663706331f585fa183f9d5176ec57d108628d0f.tar.gz
guix-msglm-f663706331f585fa183f9d5176ec57d108628d0f.tar.bz2
guix-msglm-f663706331f585fa183f9d5176ec57d108628d0f.zip
add rust-x11-clipboard@0.5
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm19
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)))
+