summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))))
+