diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-20 00:27:08 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-20 00:28:18 +0200 |
commit | 4ecd0e4e72f4d7d4f14f8b3cff895d266c7e7558 (patch) | |
tree | 050af2cb81abe711e02c88ef66654741c2337df6 | |
parent | cf6fcd3db5493a842fd484c4dde5b078d434a6eb (diff) | |
download | guix-4ecd0e4e72f4d7d4f14f8b3cff895d266c7e7558.tar.gz guix-4ecd0e4e72f4d7d4f14f8b3cff895d266c7e7558.zip |
gnu: Add rust-rustc-stable-hash@0.1.2.
* gnu/packages/crates-io.scm (rust-rustc-stable-hash-0.1): New variable.
Change-Id: I58ed0d426de53b3615c33ce160a62feaec5bf743
-rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4a6de2e0dd..33205a0fa2 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -81739,6 +81739,26 @@ that exposes the same functionality at the command line.") (base32 "0hvd6vk4ksgg2y99498jw52ric4lxm0i6ygpzqm95gdrhvsxyynp")))))) +(define-public rust-rustc-stable-hash-0.1 + (package + (name "rust-rustc-stable-hash") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "rustc-stable-hash" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "026drx2ly2b8b1pp1c2v3p3ws6k0jaa5bbc5f4xwkibhj7r4453q")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t)) + (home-page "https://github.com/rust-lang/rustc-stable-hash") + (synopsis "stable hashing algorithm used by rustc") + (description + "This package provides a stable hashing algorithm used by rustc.") + (license (list license:asl2.0 license:expat)))) + (define-public rust-tame-index-0.18 (package (name "rust-tame-index") |