diff options
Diffstat (limited to 'gnu/packages/crypto.scm')
-rw-r--r-- | gnu/packages/crypto.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 695f6ca088..b498aabf4d 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -384,9 +384,9 @@ no man page, refer to the home page for usage details.") (delete 'configure) ;no configuration to be done (add-after 'install 'i18n (lambda* (#:key make-flags #:allow-other-keys) - (zero? (apply system* - "make" "-C" "extras/translations" - "install" make-flags)))) + (apply invoke "make" "-C" "extras/translations" + "install" make-flags) + #t)) (add-after 'install 'wrap (lambda* (#:key inputs outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) @@ -411,8 +411,9 @@ no man page, refer to the home page for usage details.") ;; querying `tomb -h`. (let ((tomb (string-append (assoc-ref outputs "out") "/bin/tomb"))) - (zero? (system* tomb "dig" "-s" "10" "secrets.tomb")))))))) - (home-page "http://www.dyne.org/software/tomb") + (invoke tomb "dig" "-s" "10" "secrets.tomb") + #t)))))) + (home-page "https://www.dyne.org/software/tomb") (synopsis "File encryption for secret data") (description "Tomb is an application to manage the creation and access of encrypted |