me
/
guix
Archived
1
0
Fork 0

gnu: emacs-doom-themes: Update package style.

* gnu/packages/emacs-xyz.scm (emacs-doom-themes)[arguments]: Use
G-expressions. Remove trailing #T at the end of a phase.
master
Nicolas Goaziou 2022-07-11 11:19:37 +02:00
parent 157139612a
commit 77504dddae
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 17 additions and 18 deletions

View File

@ -28027,14 +28027,14 @@ contrast and few colors.")
(native-inputs (native-inputs
(list emacs-ert-runner)) (list emacs-ert-runner))
(arguments (arguments
`(#:tests? #t (list #:tests? #t
#:test-command '("ert-runner") #:test-command #~(list "ert-runner")
#:modules ((guix build emacs-build-system) #:modules '((guix build emacs-build-system)
(guix build utils) (guix build utils)
(guix build emacs-utils) (guix build emacs-utils)
(srfi srfi-1)) (srfi srfi-1))
#:phases #:phases
(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'unpack 'move-themes (add-after 'unpack 'move-themes
(lambda _ (lambda _
;; Move the source files to the top level, which is in the ;; Move the source files to the top level, which is in the
@ -28043,8 +28043,7 @@ contrast and few colors.")
(rename-file f (basename f))) (rename-file f (basename f)))
(append (append
(find-files "./themes" ".*\\.el$") (find-files "./themes" ".*\\.el$")
(find-files "./extensions" ".*\\.el$"))) (find-files "./extensions" ".*\\.el$"))))))))
#t)))))
(synopsis "Wide collection of color themes for Emacs") (synopsis "Wide collection of color themes for Emacs")
(description "Emacs-doom-themes contains numerous popular color themes for (description "Emacs-doom-themes contains numerous popular color themes for
Emacs that integrate with major modes like Org-mode.") Emacs that integrate with major modes like Org-mode.")