diff options
author | Wilko Meyer <w@wmeyer.eu> | 2024-01-08 02:52:04 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:49 +0200 |
commit | 5f92f7faf6284af26bbd459aeb0cd402d2bab7a9 (patch) | |
tree | eb4cd19212ba00b81e22e45acfddfb37e42b1bc5 | |
parent | f8eab1bf478a44e5fd57af87bf24c3785ce0e254 (diff) |
gnu: Add rust-cint-0.3.
* gnu/packages/crates-io.scm (rust-cint-0.3): New variable.
Change-Id: Ib9ecf7b97e918db9fe9166af1d5c8d21dd2349b4
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d9aa2a1f46..d8d893caac 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -11744,6 +11744,29 @@ usage.") "This package provides low-level primitives for parsing the CBOR codec.") (license license:asl2.0))) +(define-public rust-cint-0.3 + (package + (name "rust-cint") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "cint" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "16l9glvaxshbp3awcga3s8cdfv00gb1n2s7ixzxxjwc5yz6qf3ks")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ; use of undeclared type `ColorCrate2` + #:cargo-inputs (("rust-bytemuck" ,rust-bytemuck-1)))) + (home-page "https://github.com/termhn/cint") + (synopsis + "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)))) + (define-public rust-ci-info-0.3 (package (name "rust-ci-info") |