me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-kibit-helper.

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

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Alexandr Vityazev 2021-06-03 20:39:32 +00:00 committed by Nicolas Goaziou
parent b61ee34c9d
commit fec881eac3
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions

View File

@ -28336,3 +28336,26 @@ shorter than usual, using mostly unprefixed keys.")
(description "@code{emacs-multitran} is a zero-dependency Emacs interface
to the https://multitran.com online dictionary.")
(license license:gpl3+)))
(define-public emacs-kibit-helper
(package
(name "emacs-kibit-helper")
(version "0.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/brunchboy/kibit-helper")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-s" ,emacs-s)))
(home-page "http://www.github.com/brunchboy/kibit-helper")
(synopsis "Use the Kibit Leiningen plugin from Emacs")
(description
"Kibit Helper provides functions to work with the Kibit Leiningen plugin
for detecting and improve non-idiomatic Clojure source code.")
(license license:gpl3+)))