diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-31 16:51:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:45:58 +0300 |
commit | 1cabbb721a1a97b733cf61fc92b6eb2c26a5743e (patch) | |
tree | 0a9ac1eacb938ab949fd8233de3ba04606e2221c /gnu/packages/crates-crypto.scm | |
parent | a48fc00ee1980fbf64fec3af75443dd5dacb8e29 (diff) | |
download | guix-1cabbb721a1a97b733cf61fc92b6eb2c26a5743e.tar.gz guix-1cabbb721a1a97b733cf61fc92b6eb2c26a5743e.zip |
gnu: rust-botan-sys-0.10: Update to 0.10.5.
* gnu/packages/crates-crypto.scm (rust-botan-sys-0.10): Update to
0.10.5.
[cargo-inputs]: Replace rust-botan-src-0.21903 with 0.30101.
(rust-botan-src-0.21903): Remove variable.
(rust-botan-src-0.30101): New variable.
(rust-botan-src-0.21903): Inherit from rust-botan-src-0.30101.
Change-Id: I032e685de7b350cb62a7bb4f682af806e06ac8a4
Diffstat (limited to 'gnu/packages/crates-crypto.scm')
-rw-r--r-- | gnu/packages/crates-crypto.scm | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm index 1aadb2db65..355641e5c1 100644 --- a/gnu/packages/crates-crypto.scm +++ b/gnu/packages/crates-crypto.scm @@ -973,17 +973,17 @@ and block modes.") (define-public rust-botan-sys-0.10 (package (name "rust-botan-sys") - (version "0.10.3") + (version "0.10.5") (source (origin (method url-fetch) (uri (crate-uri "botan-sys" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1cbjr44gc5dhmgl43sfiqzbsma4anfi3h26m4yzsli23yd1lmyf8")))) + "1ji12rxvi4h7pap772cd2hw4xdgqdsgw6m8wqin9klpbp3hxsjcz")))) (build-system cargo-build-system) (arguments - `(#:cargo-inputs (("rust-botan-src" ,rust-botan-src-0.21903)))) + `(#:cargo-inputs (("rust-botan-src" ,rust-botan-src-0.30101)))) (inputs (list botan)) (home-page "https://botan.randombit.net/") (synopsis "FFI wrapper for Botan cryptography library") @@ -1006,20 +1006,20 @@ and block modes.") (("rust-botan-src" ,rust-botan-src-0.21703) ("rust-cty" ,rust-cty-0.2)))))) -(define-public rust-botan-src-0.21903 +(define-public rust-botan-src-0.30101 (package (name "rust-botan-src") - (version "0.21903.1") - (source (origin - (method url-fetch) - (uri (crate-uri "botan-src" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "19fhll4g0v8hbyjxg8c790l9ln5xgf4r6xdcnw438mpy81hvrdxy")) - (modules '((guix build utils))) - (snippet - '(begin (delete-file-recursively "botan"))))) + (version "0.30101.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "botan-src" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "17xwnan8r21hzbxdailnidp9q54g787s9njhy63yqw83q0k09bxa")) + (modules '((guix build utils))) + (snippet + '(begin (delete-file-recursively "botan"))))) (build-system cargo-build-system) (arguments '(#:skip-build? #t)) (home-page "https://botan.randombit.net/") @@ -1029,7 +1029,7 @@ and block modes.") (define-public rust-botan-src-0.21703 (package - (inherit rust-botan-src-0.21903) + (inherit rust-botan-src-0.30101) (name "rust-botan-src") (version "0.21703.0") (source (origin |