gnu: Add rust-supercow-0.1.

* gnu/packages/crates-io.scm (rust-supercow-0.1): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
phodina 2021-09-03 22:34:55 +00:00 committed by Nicolas Goaziou
parent e4eeb57845
commit b5e45d1a14
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -46583,6 +46583,25 @@ (define-public rust-surf-2
alike. It's completely modular, and built directly for @code{async/await}.")
(license (list license:expat license:asl2.0))))
(define-public rust-supercow-0.1
(package
(name "rust-supercow")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "supercow" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0qxxk2z4pa7ni17bdhix9syhax0nnnpbjjpsinkhd8vsnknmh5qp"))))
(build-system cargo-build-system)
(home-page "https://github.com/altsysrq/supercow")
(synopsis "Generic way to accept general reference-like values")
(description
"This package provides a generic way to accept general reference-like
values without proliferating generics.")
(license (list license:expat license:asl2.0))))
(define-public rust-surf-1
(package
(inherit rust-surf-2)