gnu: emacs-flycheck-cpplint: Set cpplint path.

* gnu/packages/emacs-xyz.scm (emacs-flycheck-cpplint)[inputs]: Add cpplint.
[arguments]: Add a set-cpplint-path phase to set the path of cpplint.
This commit is contained in:
Mathieu Othacehe 2019-11-15 11:04:23 +01:00
parent 7e08be71ac
commit b02a9523b3
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 12 additions and 0 deletions

View File

@ -91,6 +91,7 @@
#:use-module (gnu packages bash)
#:use-module (gnu packages cmake)
#:use-module (gnu packages code)
#:use-module (gnu packages cpp)
#:use-module (gnu packages curl)
#:use-module (gnu packages databases)
#:use-module (gnu packages dictionaries)
@ -19850,6 +19851,17 @@ such as:
(sha256
(base32 "0l6sg83f6z8x2alnblpv03rj442sbnkkkcbf8i0agjmx3713a5yx"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'set-cpplint-path
(lambda _
(substitute* "flycheck-google-cpplint.el"
(("\"cpplint.py\"")
(string-append "\"" (which "cpplint") "\"")))
#t)))))
(inputs
`(("cpplint" ,cpplint)))
(propagated-inputs
`(("flycheck-mode" ,emacs-flycheck)))
(synopsis "Google C++ checker for Flycheck")