diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-22 21:26:06 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:04:44 +0200 |
commit | e38a3a35d4aeac11b8347dfc0e8ff56ccb8124c2 (patch) | |
tree | 517e970acf7e19449277a68d08d19eee9e41920b /gnu/packages | |
parent | 834e4a64566e014b0ac5bf18a11746e6f033d6a4 (diff) | |
download | guix-e38a3a35d4aeac11b8347dfc0e8ff56ccb8124c2.tar.gz guix-e38a3a35d4aeac11b8347dfc0e8ff56ccb8124c2.zip |
gnu: Add rust-sequoia-keystore-backend-0.6.
* gnu/packages/sequoia.scm (rust-sequoia-keystore-backend-0.6): New
variable.
(rust-sequoia-keystore-backend-0.2): Remove variable.
Change-Id: Ic07a82a4b86baf240e441201a9e549a83fe8c9b8
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/sequoia.scm | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gnu/packages/sequoia.scm b/gnu/packages/sequoia.scm index 6e8f54642c..35279743b1 100644 --- a/gnu/packages/sequoia.scm +++ b/gnu/packages/sequoia.scm @@ -231,24 +231,30 @@ than just headers; it requires tight integration with the MUA.") (description "This package contains sequoia's private key store server.") (license license:lgpl2.0+))) -(define-public rust-sequoia-keystore-backend-0.2 +(define-public rust-sequoia-keystore-backend-0.6 (package (name "rust-sequoia-keystore-backend") - (version "0.2.0") + (version "0.6.0") (source (origin (method url-fetch) (uri (crate-uri "sequoia-keystore-backend" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "07v6rc27v0di2v59mixshhc4fkkf1ig0yqkzgqz0v2si4z8slv3s")))) + (base32 "15nzpqgpnnbmpcdldzgzx5v0ifgm1njqhvzsh40cg3c02p7xyz40")))) (build-system cargo-build-system) (arguments `(#:features '("sequoia-openpgp/crypto-nettle") #:cargo-inputs (("rust-anyhow" ,rust-anyhow-1) - ("rust-blanket" ,rust-blanket-0.3) + ("rust-async-trait" ,rust-async-trait-0.1) + ("rust-env-logger" ,rust-env-logger-0.10) + ("rust-futures" ,rust-futures-0.3) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-log" ,rust-log-0.4) ("rust-sequoia-openpgp" ,rust-sequoia-openpgp-1) - ("rust-thiserror" ,rust-thiserror-1)) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-tokio" ,rust-tokio-1)) #:cargo-development-inputs (("rust-sequoia-openpgp" ,rust-sequoia-openpgp-1)))) (native-inputs (list clang pkg-config)) |