diff options
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 19578d8..902a9ce 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -2013,3 +2013,21 @@ this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.") (license license:expat))) +(define-public rust-lazy-static-0.1 + (package + (name "rust-lazy-static") + (version "0.1.16") + (source + (origin + (method url-fetch) + (uri (crate-uri "lazy_static" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "05vl1h4b0iv800grsdyc3fg2bq29p70wjav6zpjvxxd5i8d6s66g")))) + (build-system cargo-build-system) + (home-page "https://github.com/rust-lang-nursery/lazy-static.rs") + (synopsis "macro for declaring lazily evaluated statics in Rust.") + (description + "This package provides a macro for declaring lazily evaluated statics in Rust.") + (license license:expat))) + |