aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerman Rimm <herman@rimm.ee>2024-02-18 22:02:00 +0100
committerEfraim Flashner <efraim@flashner.co.il>2024-07-19 00:40:40 +0300
commit6ed7223acb6936787548dae57ef55818064e4c47 (patch)
tree33d5304c8617197382b7ba711b37a17161c0a1c7
parent9cce0eca705ff91190a83180cce46de804dfcb79 (diff)
downloadguix-6ed7223acb6936787548dae57ef55818064e4c47.tar.gz
guix-6ed7223acb6936787548dae57ef55818064e4c47.zip
gnu: Add rust-anymap2-0.13.
* gnu/packages/crates-io.scm (rust-anymap2-0.13): Add variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Ia8bbca8741b553f802d42f7224dbe4d117ca8af3
-rw-r--r--gnu/packages/crates-io.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 15e30cf61a..e3a2f71c54 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1871,6 +1871,27 @@ writing colored text to a terminal.")
type.")
(license (list license:expat license:asl2.0))))
+(define-public rust-anymap2-0.13
+ (package
+ (name "rust-anymap2")
+ (version "0.13.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "anymap2" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "031kw3bp0zh2pn9fcayaw0w0gydgpgfhm08pg4yz5cml9jwv60fk"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:tests? #f)) ; cannot transmute between types of different sizes
+ (home-page "https://github.com/azriel91/anymap2")
+ (synopsis "Safe and convenient store for one value of each type")
+ (description
+ "This package provides a safe and convenient store for one value of
+each type.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-app-dirs2-2
(package
(name "rust-app-dirs2")