diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-10-18 22:31:54 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-10-24 10:46:02 +0300 |
commit | 79b402cb9b876e49e774415a1cffea5cc78cf24a (patch) | |
tree | 0aba1eb5e0a41a8fc6e190c836c729d871dfe7fc | |
parent | 7d38ae4c52502835c1d7217eaf2e3a5cde1ff881 (diff) |
gnu: Remove rust-argon2rs-0.2.
* gnu/packages/crates-io.scm (rust-argon2rs-0.2): Delete variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4312fd72d4..c69c7865f6 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -3333,39 +3333,6 @@ coverage-guided, mutation-based fuzzers.") (description "Derive-based argument parser optimized for code size") (license license:bsd-3))) -(define-public rust-argon2rs-0.2 - (package - (name "rust-argon2rs") - (version "0.2.5") - (source - (origin - (method url-fetch) - (uri (crate-uri "argon2rs" version)) - (file-name - (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "14mkgkrjd4b4zy92pflz6yb4j1wn2chbd8jczxknxbkdm2vb0rrz")))) - (build-system cargo-build-system) - (arguments - `(#:cargo-inputs - (("rust-blake2-rfc" ,rust-blake2-rfc-0.2) - ("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)) - #:cargo-development-inputs - (("rust-cargon" ,rust-cargon-0.0)) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-cargo-toml - (lambda _ - (substitute* "Cargo.toml" - (("\\{ path =.*,") "{")) - #t))))) - (home-page "https://github.com/bryant/argon2rs") - (synopsis "Rust password hashing library that runs on Argon2") - (description "This package provides a pure Rust password hashing library -that runs on Argon2.") - (license license:expat))) - (define-public rust-arr-macro-impl-0.1 (package (name "rust-arr-macro-impl") |