mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-30 08:02:38 -05:00
gnu: Add emacs-flymake-guile.
* gnu/packages/emacs-xyz.scm (emacs-flymake-guile): New variable. Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
5ef28595e9
commit
20832dac48
1 changed files with 24 additions and 0 deletions
|
@ -133,6 +133,7 @@
|
|||
;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier@free.fr>
|
||||
;;; Copyright © 2023 Ahmad Draidi <a.r.draidi@redscript.org>
|
||||
;;; Copyright © 2023 Sergiu Ivanov <sivanov@colimite.fr>
|
||||
;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -2537,6 +2538,29 @@ (define-public emacs-flymake-collection
|
|||
modes.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public emacs-flymake-guile
|
||||
(package
|
||||
(name "emacs-flymake-guile")
|
||||
(version "0.5")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url
|
||||
"https://framagit.org/flymake-backends/flymake-guile.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0cb2wcn34bzj93y7s1g2b2sxv79vqihb3a5n0rhxbrddfila95hh"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://framagit.org/flymake-backends/flymake-guile")
|
||||
(synopsis "GNU Guile support for Flymake")
|
||||
(description
|
||||
"This package provides a Flymake backend for GNU Guile using @code{guild
|
||||
compile}.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-flymake-popon
|
||||
(package
|
||||
(name "emacs-flymake-popon")
|
||||
|
|
Loading…
Reference in a new issue