diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-02-09 21:31:13 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-02-11 16:29:04 +0100 |
commit | f1d7e14a1b990118327aacdaba7e62422ff8a4aa (patch) | |
tree | 6d88461d45797babc9f5f3683b50ae1df13875be /gnu/packages/crypto.scm | |
parent | f62dcba42d9812199f6805a95100f8d39c739fde (diff) | |
download | patches-f1d7e14a1b990118327aacdaba7e62422ff8a4aa.tar patches-f1d7e14a1b990118327aacdaba7e62422ff8a4aa.tar.gz |
gnu: libmd: Update to 1.0.0.
* gnu/packages/crypto.scm (libmd): Update to 1.0.0.
[source](uri): Add freedesktop.org mirror.
Diffstat (limited to 'gnu/packages/crypto.scm')
-rw-r--r-- | gnu/packages/crypto.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index e616c9223f..5e5bc4de05 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -87,16 +87,18 @@ communication, encryption, decryption, signatures, etc.") (define-public libmd (package (name "libmd") - (version "0.0.0") + (version "1.0.0") (source (origin (method url-fetch) - (uri (string-append - "https://archive.hadrons.org/software/libmd/libmd-" - version - ".tar.xz")) + (uri + (list + (string-append "https://archive.hadrons.org/software/libmd/libmd-" + version ".tar.xz") + (string-append "https://libbsd.freedesktop.org/releases/libmd-" + version ".tar.xz"))) (sha256 (base32 - "121s73pgbqsnmy6xblbrkj9y44c5zzzpf2hcmh6zvcvg4dk26gzx")))) + "1iv45npzv0gncjgcpx5m081861zdqxw667ysghqb8721yrlyl6pj")))) (build-system gnu-build-system) (synopsis "Message Digest functions from BSD systems") (description |