diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-03-15 12:15:05 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-05-07 19:29:26 +0300 |
commit | 84893b6ac44cc5ac4e0689838a2bc1dd3f5d9c00 (patch) | |
tree | 17a94683fe9fce8dcfee6e39e51bb8fb7b07e840 | |
parent | 1476c3de3ab9fc7d92a92eabb992f3a9be330681 (diff) | |
download | guix-84893b6ac44cc5ac4e0689838a2bc1dd3f5d9c00.tar.gz |
gnu: Add rust-indexmap-1.6.
* gnu/packages/crates-io.scm (rust-indexmap-1.6): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 3209cbc599..6e5e917cec 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -28735,6 +28735,32 @@ or numerical index. A corresponding hash set type is also provided.") ("rust-rand" ,rust-rand-0.7) ("rust-serde-derive" ,rust-serde-derive-1)))))) +(define-public rust-indexmap-1.6 + (package + (inherit rust-indexmap-1) + (name "rust-indexmap") + (version "1.6.2") + (source (origin + (method url-fetch) + (uri (crate-uri "indexmap" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1wxfh55zlrlpdxfcvvvj6wwc46f23cnb0j9q71190yl9pyh4aj42")))) + (arguments + `(#:cargo-inputs + (("rust-autocfg" ,rust-autocfg-1) + ("rust-hashbrown" ,rust-hashbrown-0.9) + ("rust-rayon" ,rust-rayon-1) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-fnv" ,rust-fnv-1) + ("rust-fxhash" ,rust-fxhash-0.2) + ("rust-itertools" ,rust-itertools-0.9) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-quickcheck" ,rust-quickcheck-0.9) + ("rust-rand" ,rust-rand-0.7) + ("rust-serde-derive" ,rust-serde-derive-1)))))) + (define-public rust-indicatif-0.16 (package (name "rust-indicatif") |