mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: emacs-flymake-shellcheck: Add reference to shellcheck.
* gnu/packages/emacs-xyz.scm (emacs-flymake-shellcheck) [inputs]: Add shellcheck. [arguments]: Add substitute-shellcheck-path phase. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
1007eb4874
commit
88d5081986
1 changed files with 13 additions and 0 deletions
|
@ -1649,6 +1649,19 @@ (define-public emacs-flymake-shellcheck
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "04yfb4sy41spjzk9mhm4gy0h8vnjx09p2g6nm1yzgd9a5ph9sqgl"))))
|
(base32 "04yfb4sy41spjzk9mhm4gy0h8vnjx09p2g6nm1yzgd9a5ph9sqgl"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'substitute-shellcheck-path
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(make-file-writable "flymake-shellcheck.el")
|
||||||
|
(emacs-substitute-sexps "flymake-shellcheck.el"
|
||||||
|
("defcustom flymake-shellcheck-path"
|
||||||
|
`(or (executable-find "shellcheck")
|
||||||
|
,(string-append (assoc-ref inputs "shellcheck")
|
||||||
|
"/bin/shellcheck")))))))))
|
||||||
|
(inputs
|
||||||
|
`(("shellcheck" ,shellcheck)))
|
||||||
(home-page "https://github.com/federicotdn/flymake-shellcheck")
|
(home-page "https://github.com/federicotdn/flymake-shellcheck")
|
||||||
(synopsis "Flymake backend for Bash/Sh powered by ShellCheck")
|
(synopsis "Flymake backend for Bash/Sh powered by ShellCheck")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue