summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:04 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:04 -0500
commit65a290d6a2507d281b1276b72c59bd239aa8471f (patch)
treeebd4d6385cea985a863a3c82553437a48ffac2ad
parent623c467df92d33289fee4ff5c02abf116a6fb3e5 (diff)
downloadguix-techchud-65a290d6a2507d281b1276b72c59bd239aa8471f.tar.gz
guix-techchud-65a290d6a2507d281b1276b72c59bd239aa8471f.tar.bz2
guix-techchud-65a290d6a2507d281b1276b72c59bd239aa8471f.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))))
+