mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
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:
parent
033b098de8
commit
2f7e32aa0f
1 changed files with 23 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue