gnu: Add rust-groupable-0.2.

* gnu/packages/crates-io.scm (rust-groupable-0.2): New variable.
This commit is contained in:
Nicolas Goaziou 2021-02-10 00:06:14 +01:00
parent 3f7e15dd63
commit 162d0195ad
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -15278,6 +15278,25 @@ (define-public rust-grep-searcher-0.1
"Fast line oriented regex searching as a library.")
(license (list license:unlicense license:expat))))
(define-public rust-groupable-0.2
(package
(name "rust-groupable")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "groupable" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0msfvg8xw4bqi7y7xdkm8nvjjllznc10dnzkx8wnjr5yp119jq9j"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/ryman/groupable-rs")
(synopsis "Easily aggregate groups of values from key-value iterators")
(description
"This package aggregates groups of values from key-value iterators.")
(license license:expat)))
(define-public rust-gzip-header-0.3
(package
(name "rust-gzip-header")