mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
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:
parent
be3b73bd88
commit
45bff50734
1 changed files with 9 additions and 8 deletions
|
@ -3677,14 +3677,15 @@ (define-public emacs-dash
|
|||
(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.")
|
||||
|
|
Loading…
Reference in a new issue