gnu: Add rust-ordered-stream-0.2.
* gnu/packages/crates-io.scm (rust-ordered-stream-0.2): Add variable. (rust-ordered-stream-0.1): Inherit from rust-ordered-stream-0.2. Change-Id: I24169187e93fe2b08fe85a9d3ba6290b9f751dc3 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
874a8c4f5b
commit
c627f2f743
1 changed files with 22 additions and 9 deletions
|
@ -43407,17 +43407,17 @@ PartialOrd types, like floats.")
|
||||||
insertion order across all keys and values.")
|
insertion order across all keys and values.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-ordered-stream-0.1
|
(define-public rust-ordered-stream-0.2
|
||||||
(package
|
(package
|
||||||
(name "rust-ordered-stream")
|
(name "rust-ordered-stream")
|
||||||
(version "0.1.4")
|
(version "0.2.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (crate-uri "ordered-stream" version))
|
(method url-fetch)
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(uri (crate-uri "ordered-stream" version))
|
||||||
(sha256
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(base32
|
(sha256
|
||||||
"140c0h0ap30mcfhdk2xy1q9iqyb450wh11dglshh2y6vmjyj82in"))))
|
(base32 "0l0xxp697q7wiix1gnfn66xsss7fdhfivl2k7bvpjs4i3lgb18ls"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
|
@ -43432,6 +43432,19 @@ insertion order across all keys and values.")
|
||||||
external events in Rust.")
|
external events in Rust.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-ordered-stream-0.1
|
||||||
|
(package
|
||||||
|
(inherit rust-ordered-stream-0.2)
|
||||||
|
(name "rust-ordered-stream")
|
||||||
|
(version "0.1.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ordered-stream" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"140c0h0ap30mcfhdk2xy1q9iqyb450wh11dglshh2y6vmjyj82in"))))))
|
||||||
|
|
||||||
(define-public rust-ordermap-0.3
|
(define-public rust-ordermap-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-ordermap")
|
(name "rust-ordermap")
|
||||||
|
|
Reference in a new issue