diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-10-25 21:50:59 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-10-25 21:50:59 +0300 |
commit | 6ff203663e696b74e711ab09d6f4b35c2c332f0f (patch) | |
tree | 4bf2c77c62fa60febba527a76b1ecffaa0a00a0d /gnu/packages/crypto.scm | |
parent | 408a4ed071c9c52de207d799a698781d49fa727d (diff) | |
parent | a0751e3250dfea7e52468c8090e18c3118d93a60 (diff) |
Merge remote-tracking branch 'origin/master' into staging
Diffstat (limited to 'gnu/packages/crypto.scm')
-rw-r--r-- | gnu/packages/crypto.scm | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 074fa5bf31..e63ed011aa 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -1471,7 +1471,7 @@ non-encrypted files.") (define-public cryfs (package (name "cryfs") - (version "0.11.2") + (version "0.11.3") (source (origin (method url-fetch) @@ -1479,7 +1479,7 @@ non-encrypted files.") "https://github.com/cryfs/cryfs/releases/download/" version "/cryfs-" version ".tar.xz")) (sha256 - (base32 "1ggizlacm4fccsw9syy2763ihxnby6cdh3mhhraxy8bmsdjza7lm")))) + (base32 "1h41dhdfk2nll0vx5i66mgrdalv6kccwq5yx99gridywxw6qxxhq")))) (build-system cmake-build-system) (arguments '(#:modules ((guix build cmake-build-system) @@ -1519,19 +1519,17 @@ non-encrypted files.") (when tests? (let ((tests (find-files "." "-test$"))) ;; XXX: Disable failing tests. Unfortunately there are a - ;; few. Some only fail in the build environment due to - ;; FUSE not being available. - (for-each invoke - (lset-difference string-contains - tests - '("cpp-utils-test" - "cryfs-cli-test" - "blobstore-test" - "fspp-test"))))) - #t))))) + ;; few. Some only fail in the build environment due to + ;; FUSE not being available. + (for-each invoke + (lset-difference string-contains + tests + '("cpp-utils-test" + "cryfs-cli-test" + "blobstore-test" + "fspp-test")))))))))) (native-inputs - `(("python" ,python-wrapper) - ("pkg-config" ,pkg-config))) + (list pkg-config python-wrapper)) (inputs (list boost curl fuse range-v3 spdlog)) (home-page "https://www.cryfs.org/") |