diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:56:24 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:56:24 -0600 |
commit | 455576e7b0c96984be726783ba7e9fd5f19721ed (patch) | |
tree | 5a61a126bb3b30ec1a04c2e46d03fb95daf80d60 | |
parent | c7df5229cbe55d4c20b4c7f48fdef9bc9cb47bb1 (diff) | |
download | guix-msglm-455576e7b0c96984be726783ba7e9fd5f19721ed.tar.gz guix-msglm-455576e7b0c96984be726783ba7e9fd5f19721ed.tar.bz2 guix-msglm-455576e7b0c96984be726783ba7e9fd5f19721ed.zip |
add rust-nohash-hasher@0.2
-rw-r--r-- | unlustig.scm | 19 |
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)))) + |