diff options
-rw-r--r-- | unlustig.scm | 22 |
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)))) + |