gnu: Add rust-lazycell-1.2.

* gnu/packages/crates-io.scm (rust-lazycell-1.2): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-14 18:46:28 -08:00 committed by Efraim Flashner
parent 033b098de8
commit 2f7e32aa0f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3085,6 +3085,29 @@ (define-public rust-lazy-static-1.3
(license (list license:asl2.0
license:expat))))
(define-public rust-lazycell-1.2
(package
(name "rust-lazycell")
(version "1.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "lazycell" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0gvqycmpv7parc98i6y64ai7rvxrn1947z2a6maa02g4kvxdd55j"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-clippy" ,rust-clippy-0.0))))
(home-page "https://github.com/indiv0/lazycell")
(synopsis "Lazily filled Cell struct")
(description
"This package provides a library providing a lazily filled Cell struct.")
(license (list license:expat license:asl2.0))))
(define-public rust-libc-0.2
(package
(name "rust-libc")