mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: emacs-chess: Improve package style.
* gnu/packages/emacs-xyz.scm (emacs-chess)[arguments]: Use G-expressions. Remove trailing #T.
This commit is contained in:
parent
256cdde7ad
commit
b618569d6a
1 changed files with 9 additions and 10 deletions
|
@ -8434,16 +8434,15 @@ (define-public emacs-chess
|
||||||
(base32 "1a4iwjdh6k348df6qywjws9z9f862d62m0b2sz57z4xhywiyxpr7"))))
|
(base32 "1a4iwjdh6k348df6qywjws9z9f862d62m0b2sz57z4xhywiyxpr7"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-pieces
|
(add-after 'install 'install-pieces
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let ((pieces
|
||||||
(pieces
|
(string-append #$output "/share/emacs/site-lisp/pieces")))
|
||||||
(string-append out "/share/emacs/site-lisp/pieces")))
|
|
||||||
(mkdir-p pieces)
|
(mkdir-p pieces)
|
||||||
(copy-recursively "pieces" pieces)
|
(copy-recursively "pieces" pieces)))))))
|
||||||
#t))))))
|
|
||||||
(home-page "https://elpa.gnu.org/packages/chess.html")
|
(home-page "https://elpa.gnu.org/packages/chess.html")
|
||||||
(synopsis "Play chess in GNU Emacs")
|
(synopsis "Play chess in GNU Emacs")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue