diff options
-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))) + |