diff options
author | Ivan Vilata i Balaguer <ivan@selidor.net> | 2023-05-19 19:45:56 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-25 12:51:16 +0200 |
commit | ca5696b1a3562f5d908010454baddb3006d4ac97 (patch) | |
tree | 30b68753769f45babb591f4ae2bfadbe710bde89 /gnu | |
parent | ca1ea6373ab6faeab729c8767e62ede63b8e9f9a (diff) | |
download | guix-ca5696b1a3562f5d908010454baddb3006d4ac97.tar.gz |
gnu: encfs: Depend on OpenSSL v1.1 to fix test segfault.
[[PGP Signed Part:No public key for 3DECC105F5DD2382 created at 2023-05-19T19:45:47+0200 using RSA]] Fixes <https://issues.guix.gnu.org/63280>. * gnu/packages/crypto.scm (encfs): Update to 1.9. [inputs]: Replace openssl with openssl-1.1. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crypto.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 935a77be04..fe1f04d2dd 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -25,6 +25,7 @@ ;;; Copyright © 2022 Allan Adair <allan@adair.no> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> +;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -331,7 +332,7 @@ OpenBSD tool of the same name.") ("googletest-source" ,(package-source googletest)) ("perl" ,perl))) (inputs - (list attr fuse openssl tinyxml2)) + (list attr fuse openssl-1.1 tinyxml2)) (arguments `(#:configure-flags (list "-DUSE_INTERNAL_TINYXML=OFF") #:phases |