diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-08 23:40:47 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-08 23:41:16 +0100 |
commit | 64bef450d9c3a94d22fbdbd28f365ed416d1cf3b (patch) | |
tree | 9489263672eb73892c363315a16e266369188604 /gnu | |
parent | f3415ba511c0e48f5d14d2694493a316d47e4cb7 (diff) | |
download | patches-64bef450d9c3a94d22fbdbd28f365ed416d1cf3b.tar patches-64bef450d9c3a94d22fbdbd28f365ed416d1cf3b.tar.gz |
gnu: botan: Update to 2.12.1.
* gnu/packages/crypto.scm (botan): Update to 2.12.1.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crypto.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index a8f60f1665..00bb0a2706 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -734,14 +734,14 @@ SHA256, SHA512, SHA3, AICH, ED2K, Tiger, DC++ TTH, BitTorrent BTIH, GOST R (define-public botan (package (name "botan") - (version "2.7.0") + (version "2.12.1") (source (origin (method url-fetch) (uri (string-append "https://botan.randombit.net/releases/" - "Botan-" version ".tgz")) + "Botan-" version ".tar.xz")) (sha256 (base32 - "142aqabwc266jxn8wrp0f1ffrmcvdxwvyh8frb38hx9iaqazjbg4")))) + "1ada3ga7b0z4m0vjmxlvfi4nsic2l8kjcy85jwss3z2i58a5y0vy")))) (build-system gnu-build-system) (arguments '(#:phases |