mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: emacs-csound-mode: Improve package style.
* gnu/packages/emacs-xyz.scm (emacs-csound-mode)[arguments]: Use G-expressions. <phases>: Use MAKE-FILE-WRITABLE instead of CHMOD. Remove trailing #T. [description]: Use complete sentences.
This commit is contained in:
parent
861a6f7f46
commit
2f6cc86f40
1 changed files with 11 additions and 12 deletions
|
@ -31991,22 +31991,21 @@ (define-public emacs-csound-mode
|
|||
"0kfhca1n0iv1400jf4ggjbarg7ry8ccd5bs7cf2brjdiqp74cvwb"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'disable-breaking-compilation
|
||||
(lambda _
|
||||
(for-each (lambda (file)
|
||||
(chmod file #o600) ; needed to write changes.
|
||||
(emacs-batch-disable-compilation file))
|
||||
'("csound-font-lock.el"))
|
||||
#t)))))
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'disable-breaking-compilation
|
||||
(lambda _
|
||||
(let ((file "csound-font-lock.el"))
|
||||
(make-file-writable file)
|
||||
(emacs-batch-disable-compilation file)))))))
|
||||
(propagated-inputs
|
||||
(list emacs-dash emacs-highlight emacs-multi emacs-shut-up))
|
||||
(home-page "https://github.com/hlolli/csound-mode")
|
||||
(synopsis "Emacs major mode for coding in CSound")
|
||||
(description "Provides both a basic major mode for editing
|
||||
CSound files, as well as a REPL for fast feedback when composing
|
||||
and sound-designing.")
|
||||
(description "This package provides both a basic major mode for editing
|
||||
CSound files, as well as a REPL for fast feedback when composing and
|
||||
sound-designing using CSound.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-multi
|
||||
|
|
Loading…
Reference in a new issue