diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-09-25 10:32:56 +0200 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2025-12-01 11:42:01 +0100 |
| commit | 7c6d8a6224cf3209efa179dbe1509759a580cb05 (patch) | |
| tree | dc6bb81afb5500f5fc050b5be5256eab2d19c03d /gnu | |
| parent | efe31970ff97b4c80a3b5bd63563869870c24aa2 (diff) | |
gnu: enchive: Improve style.
* gnu/packages/crypto.scm (enchive)[arguments]: Use G-Expressions.
Change-Id: Iea37da31663013744e49cc93350ce38227ad0b91
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/crypto.scm | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 35ec88df95e..e029ec46b00 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -1127,17 +1127,19 @@ OpenBSD signatures, but it cannot sign messages in OpenBSD format yet.") (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; no check target ' - #:make-flags (list ,(string-append "CC=" (cc-for-target)) - "PREFIX=$(out)") - #:phases (modify-phases %standard-phases - (delete 'configure) - (add-after 'install 'post-install - (lambda _ - (let* ((out (assoc-ref %outputs "out")) - (lisp (string-append out "/share/emacs/site-lisp"))) - (install-file "enchive-mode.el" lisp) - #t)))))) + (list + #:tests? #f ;no check target ' + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (add-after 'install 'post-install + (lambda _ + (install-file + "enchive-mode.el" + (string-append #$output "/share/emacs/site-lisp"))))))) (synopsis "Encrypted personal archives") (description "Enchive is a tool to encrypt files to yourself for long-term |
