Archived
1
0
Fork 0

gnu: emacs-dash: Use new package style.

* gnu/packages/emacs-xyz.scm (emacs-dash)[arguments]: Convert to list of
G-Expressions.
This commit is contained in:
Liliana Marie Prikler 2022-05-15 01:19:29 +02:00
parent be3b73bd88
commit 45bff50734
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

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