mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: emacs-sudo-edit: Improve package style.
* gnu/packages/emacs-xyz.scm (emacs-sudo-edit)[arguments]: Use G-expressions. Remove trailing #T.
This commit is contained in:
parent
f32bc54c98
commit
1e28e8904c
1 changed files with 10 additions and 10 deletions
|
@ -6225,16 +6225,16 @@ (define-public emacs-sudo-edit
|
|||
(native-inputs
|
||||
(list emacs-undercover))
|
||||
(arguments
|
||||
`(#:emacs ,emacs
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'fix-makefile
|
||||
(lambda _
|
||||
(substitute* "Makefile"
|
||||
(("\\$\\(CASK\\) exec ") ""))
|
||||
#t)))
|
||||
#:tests? #t
|
||||
#:test-command '("make" "test")))
|
||||
(list
|
||||
#:emacs emacs
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'fix-makefile
|
||||
(lambda _
|
||||
(substitute* "Makefile"
|
||||
(("\\$\\(CASK\\) exec ") "")))))
|
||||
#:tests? #t
|
||||
#:test-command #~(list "make" "test")))
|
||||
(home-page "https://github.com/nflath/sudo-edit/")
|
||||
(synopsis "Open files as another user")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue