gnu: Add rust-indexmap-2.
* gnu/packages/crates-io.scm (rust-indexmap-2): New variable. (rust-indexmap-1): Inherit from rust-indexmap-2.
This commit is contained in:
parent
da19d144d0
commit
c5aa46102b
1 changed files with 40 additions and 10 deletions
|
@ -30681,23 +30681,26 @@ (define-public rust-indenter-0.3
|
|||
that efficiently appends and removes common indentation after every newline.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-indexmap-1
|
||||
(define-public rust-indexmap-2
|
||||
(package
|
||||
(name "rust-indexmap")
|
||||
(version "1.9.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "indexmap" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "16dkr2h5p379jcr8rnb420396yvzid2myirc2w70zcf43yffg18q"))))
|
||||
(version "2.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "indexmap" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0pdnbvv6gnyxx2li8mks8p00fya3ynmhx3n6infpcy8a4gi7yiym"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-arbitrary" ,rust-arbitrary-1)
|
||||
("rust-equivalent" ,rust-equivalent-1)
|
||||
("rust-hashbrown" ,rust-hashbrown-0.14)
|
||||
("rust-quickcheck" ,rust-quickcheck-1)
|
||||
("rust-rustc-rayon" ,rust-rustc-rayon-0.4)
|
||||
("rust-rayon" ,rust-rayon-1)
|
||||
("rust-rustc-rayon" ,rust-rustc-rayon-0.5)
|
||||
("rust-serde" ,rust-serde-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-fnv" ,rust-fnv-1)
|
||||
|
@ -30719,6 +30722,33 @@ (define-public rust-indexmap-1
|
|||
or numerical index. A corresponding hash set type is also provided.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-indexmap-1
|
||||
(package
|
||||
(inherit rust-indexmap-2)
|
||||
(name "rust-indexmap")
|
||||
(version "1.9.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "indexmap" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "16dkr2h5p379jcr8rnb420396yvzid2myirc2w70zcf43yffg18q"))))
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-arbitrary" ,rust-arbitrary-1)
|
||||
("rust-quickcheck" ,rust-quickcheck-1)
|
||||
("rust-rustc-rayon" ,rust-rustc-rayon-0.4)
|
||||
("rust-serde" ,rust-serde-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-fnv" ,rust-fnv-1)
|
||||
("rust-fxhash" ,rust-fxhash-0.2)
|
||||
("rust-itertools" ,rust-itertools-0.10)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-quickcheck" ,rust-quickcheck-1)
|
||||
("rust-rand" ,rust-rand-0.8)
|
||||
("rust-serde-derive" ,rust-serde-derive-1))))))
|
||||
|
||||
(define-public rust-indexmap-1.8
|
||||
(package
|
||||
(inherit rust-indexmap-1)
|
||||
|
|
Loading…
Reference in a new issue