diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:41:52 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:41:52 -0600 |
commit | bfd9fe265ee98b33d54a288e6a5968f5e34b7e41 (patch) | |
tree | ed31efb106e768e21a310b78e39cc75774156e77 | |
parent | ba3b2c9b25541fee14142f5ee96105f8ea6e5a3a (diff) | |
download | guix-msglm-bfd9fe265ee98b33d54a288e6a5968f5e34b7e41.tar.gz guix-msglm-bfd9fe265ee98b33d54a288e6a5968f5e34b7e41.tar.bz2 guix-msglm-bfd9fe265ee98b33d54a288e6a5968f5e34b7e41.zip |
add rust-lazy_static@0.1
-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))) + |