mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-29 04:01:28 -06:00
gnu: enchive: Improve style.
* gnu/packages/crypto.scm (enchive)[arguments]: Use G-Expressions. Change-Id: Iea37da31663013744e49cc93350ce38227ad0b91
This commit is contained in:
parent
efe31970ff
commit
7c6d8a6224
1 changed files with 13 additions and 11 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue