From f9a304c7a85b2e5a1a1c1a601438004d7b4835c7 Mon Sep 17 00:00:00 2001 From: John Soo Date: Thu, 19 Dec 2019 21:16:27 -0800 Subject: [PATCH 247/263] gnu: Add rust-ordermap-0.3. * gnu/packages/crates-io.scm (rust-ordermap-0.3): New variable. --- gnu/packages/crates-io.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6ef399b8c4..c15d68b9bf 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -6208,6 +6208,40 @@ system for OpenSSL.") (properties '((hidden? . #t))) (license license:expat))) +(define-public rust-ordermap-0.3 + (package + (name "rust-ordermap") + (version "0.3.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "ordermap" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0qr0a50l0qakbjcck93qdayd0xl8gzpp42x0n7b75cs4ybsx6vm8")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-serde" ,rust-serde-1.0)) + #:cargo-development-inputs + (("rust-fnv" ,rust-fnv-1.0) + ("rust-itertools" ,rust-itertools-0.8) + ("rust-lazy-static" ,rust-lazy-static-1.3) + ("rust-quickcheck" ,rust-quickcheck-0.8) + ("rust-rand" ,rust-rand-0.4) + ("rust-serde-test" ,rust-serde-test-1.0)))) + (home-page "https://github.com/bluss/indexmap") + (synopsis + "Hash table with consistent order and fast iteration") + (description + "This package provides a hash table with consistent order and fast +iteration. NOTE: This crate was renamed to indexmap. Please use it under its +new name.") + (license `(,license:asl2.0 ,license:expat)))) + (define-public rust-os-pipe-0.8 (package (name "rust-os-pipe") -- 2.24.1