summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
commitd3951919741bf70694e7cb1f2ee6188001506e02 (patch)
tree5a61a126bb3b30ec1a04c2e46d03fb95daf80d60
parent19aceabbd8ec847688a3ce43266a83f09d6d8020 (diff)
downloadguix-techchud-d3951919741bf70694e7cb1f2ee6188001506e02.tar.gz
guix-techchud-d3951919741bf70694e7cb1f2ee6188001506e02.tar.bz2
guix-techchud-d3951919741bf70694e7cb1f2ee6188001506e02.zip
add rust-nohash-hasher@0.2
-rw-r--r--unlustig.scm19
1 files changed, 19 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 081ad92..42fdc42 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -799,3 +799,22 @@ the OS-level clipboard.")
"This package provides Minimal 2D graphics library for GUI work.")
(license (list license:expat license:asl2.0))))
+(define-public rust-nohash-hasher-0.2
+ (package
+ (name "rust-nohash-hasher")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nohash-hasher" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0lf4p6k01w4wm7zn4grnihzj8s7zd5qczjmzng7wviwxawih5x9b"))))
+ (build-system cargo-build-system)
+ (home-page "https://github.com/paritytech/nohash-hasher")
+ (synopsis
+ "An implementation of `std::hash::Hasher` which does not hash at all")
+ (description
+ "This package provides An implementation of `std::hash::Hasher` which does not hash at all.")
+ (license (list license:asl2.0 license:expat))))
+