summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:06 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:06 -0500
commit9aee8241be31e4e2bcb77afaafeff61bff2bccc5 (patch)
treeed31efb106e768e21a310b78e39cc75774156e77 /unlustig.scm
parent9129d600272d5da670fcb5ce67d5ab059ae415d1 (diff)
downloadguix-techchud-9aee8241be31e4e2bcb77afaafeff61bff2bccc5.tar.gz
guix-techchud-9aee8241be31e4e2bcb77afaafeff61bff2bccc5.tar.bz2
guix-techchud-9aee8241be31e4e2bcb77afaafeff61bff2bccc5.zip
add rust-lazy_static@0.1
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm18
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)))
+