guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: emacs-dash: Use new package style.


From: guix-commits
Subject: 04/04: gnu: emacs-dash: Use new package style.
Date: Sat, 14 May 2022 19:37:02 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit 45bff507344892bfbfb114b88e6d5c6f16485d74
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun May 15 01:19:29 2022 +0200

    gnu: emacs-dash: Use new package style.
    
    * gnu/packages/emacs-xyz.scm (emacs-dash)[arguments]: Convert to list of
    G-Expressions.
---
 gnu/packages/emacs-xyz.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 928ca1c120..787f6fc43e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3677,14 +3677,15 @@ restore the saved place.")
                (base32
                 "0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8"))))
     (build-system emacs-build-system)
-    (arguments `(#:tests? #t
-                 #:phases
-                 (modify-phases %standard-phases
-                   (add-after 'unpack 'disable-byte-compile-error-on-warn
-                     (lambda _
-                       (substitute* "Makefile"
-                         (("\\(setq byte-compile-error-on-warn t\\)")
-                          "(setq byte-compile-error-on-warn nil)")))))))
+    (arguments
+     (list #:tests? #t
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'disable-byte-compile-error-on-warn
+                 (lambda _
+                   (substitute* "Makefile"
+                     (("\\(setq byte-compile-error-on-warn t\\)")
+                      "(setq byte-compile-error-on-warn nil)")))))))
     (home-page "https://github.com/magnars/dash.el";)
     (synopsis "Modern list library for Emacs")
     (description "This package provides a modern list API library for Emacs.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]