summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 12:54:54 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 12:54:54 -0600
commit3c4685498fa76478adb2251539eb9694709cc3b7 (patch)
treeebd4d6385cea985a863a3c82553437a48ffac2ad
parent62870dd4cd12bab21b79d85cd6977737d48e536f (diff)
downloadguix-msglm-3c4685498fa76478adb2251539eb9694709cc3b7.tar.gz
guix-msglm-3c4685498fa76478adb2251539eb9694709cc3b7.tar.bz2
guix-msglm-3c4685498fa76478adb2251539eb9694709cc3b7.zip
add rust-copypasta@0.7
-rw-r--r--unlustig.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 8f3ec0d..c1ec955 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -692,3 +692,30 @@ Produce optimized @code{OpenGL} function calls, and allow the user to easily use
modern @code{OpenGL} techniques.")
(license license:asl2.0)))
+(define-public rust-copypasta-0.7
+ (package
+ (name "rust-copypasta")
+ (version "0.7.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "copypasta" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "02zz6yndszmzr5yjhn11g1hsj0232jbzl8gch6mxksw3xngxf8s4"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-clipboard-win" ,rust-clipboard-win-3)
+ ("rust-objc" ,rust-objc-0.2)
+ ("rust-objc-foundation" ,rust-objc-foundation-0.1)
+ ("rust-objc-id" ,rust-objc-id-0.1)
+ ("rust-smithay-clipboard" ,rust-smithay-clipboard-0.6)
+ ("rust-x11-clipboard" ,rust-x11-clipboard-0.5))))
+ (home-page "https://github.com/alacritty/copypasta")
+ (synopsis
+ "copypasta is a cross-platform library for getting and setting the contents of the OS-level clipboard")
+ (description
+ "This package provides copypasta is a cross-platform library for getting and setting the contents of
+the OS-level clipboard.")
+ (license (list license:expat license:asl2.0))))
+