diff options
author | John Soo <jsoo1@asu.edu> | 2019-12-14 18:46:28 -0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-02 20:16:31 +0200 |
commit | 2f7e32aa0fd0e279aac6e6e35a63cb482a050e93 (patch) | |
tree | fec4e94f65bc073fffd7122fbc63afe7e3add635 | |
parent | 033b098de867987c46027824500def6cba1d731c (diff) |
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>
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4044ab1887..f20945454f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -3085,6 +3085,29 @@ requires non-const function calls to be computed.") (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") |