summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 13:09:22 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 13:09:22 -0600
commit3a6025ebadc0f6371d5d549a3da5254dad426b9c (patch)
tree7a719f94e5c6959b29d0ab8e0116eff646b1f918 /unlustig.scm
parentf663706331f585fa183f9d5176ec57d108628d0f (diff)
downloadguix-msglm-3a6025ebadc0f6371d5d549a3da5254dad426b9c.tar.gz
guix-msglm-3a6025ebadc0f6371d5d549a3da5254dad426b9c.tar.bz2
guix-msglm-3a6025ebadc0f6371d5d549a3da5254dad426b9c.zip
add rust-cint@0.2
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 2492a46..925e2c3 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -997,3 +997,25 @@ the OS-level clipboard.")
(description "This package provides x11 clipboard support for Rust.")
(license license:expat)))
+(define-public rust-cint-0.2
+ (package
+ (name "rust-cint")
+ (version "0.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "cint" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0yyp8y2nsxhs2z768hmqypfj4x0m8s2h3yar6vrp6kc552pgx0sx"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-bytemuck" ,rust-bytemuck-1))))
+ (home-page "https://github.com/termhn/cint")
+ (synopsis
+ "lean, minimal, and stable set of types for color interoperation between crates in Rust.")
+ (description
+ "This package provides a lean, minimal, and stable set of types for color
+interoperation between crates in Rust.")
+ (license (list license:expat license:asl2.0 license:zlib))))
+