mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add emacs-eglot-jl.
* gnu/packages/emacs-xyz.scm (emacs-eglot-jl): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Change-Id: I5ece71dd2dbbcd92632734e52ec1f0901337d2df
This commit is contained in:
parent
0ff72d105c
commit
1a53bb08da
1 changed files with 24 additions and 0 deletions
|
@ -12313,6 +12313,30 @@ (define-public emacs-eglot-tempel
|
|||
library with Eglot instead of Yasnippet.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-eglot-jl
|
||||
(package
|
||||
(name "emacs-eglot-jl")
|
||||
(version "2.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/non-Jedi/eglot-jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"144q4fj3am165vf1vx2ljlsmpn8vvvs1b95qi3rxlwqskkx0lig3"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments (list #:include #~(cons "\\.(jl|toml)$" %default-include)))
|
||||
(propagated-inputs (list emacs-eglot))
|
||||
(home-page "https://github.com/non-Jedi/eglot-jl")
|
||||
(synopsis "Julia support for Eglot")
|
||||
(description
|
||||
"This package adds support for Eglot to the Julia language.")
|
||||
(license license:cc0)))
|
||||
|
||||
(define-public emacs-consult-xdg-recent-files
|
||||
(let ((commit "593023ffb99a368152ebd4e739488fa560bdfdea")
|
||||
(revision "0"))
|
||||
|
|
Loading…
Reference in a new issue