~ruther/guix-local

bacd7d9ddeaffedc80cdff60a67f6fdfd04b075f — Javier Olaechea 1 year, 10 months ago 97f6451
gnu: Add emacs-flymake.

* gnu/packages/emacs-xyz.scm (emacs-flymake): New variable.

Change-Id: I8dc5cd880301dfbf8492e7b998fb80f786dd27d8
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
1 files changed, 20 insertions(+), 0 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +20 -0
@@ 1440,6 1440,26 @@ face properties and allows configuration of faces and colors.")
some utility functions, and commands using that infrastructure.")
    (license license:gpl3+)))

(define-public emacs-flymake
  (package
    (name "emacs-flymake")
    (version "1.3.7")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://elpa.gnu.org/packages/"
                           "flymake-" version ".tar"))
       (sha256
        (base32 "15ikzdqyh77cgx94jaigfrrzfvwvpca8s2120gi82i9aaiypr7jl"))))
    (build-system emacs-build-system)
    (propagated-inputs (list emacs-eldoc emacs-project))
    (home-page "https://elpa.gnu.org/packages/flymake.html")
    (synopsis "Universal on-the-fly syntax checker")
    (description
     "Flymake collects diagnostic information for multiple sources,
called backends, and visually annotates the relevant portions in the buffer.")
    (license license:gpl3+)))

;; Package has no release.  Version is extracted from "Version:" keyword in
;; main file.
(define-public emacs-project-mode-line-tag