gnu: Add emacs-elixir-mode.
* gnu/packages/emacs-xyz.scm (emacs-elixir-mode): New variable.
This commit is contained in:
parent
fda8ed0eb1
commit
cd75c487c8
1 changed files with 25 additions and 0 deletions
|
@ -18234,3 +18234,28 @@ (define-public emacs-doom-themes
|
|||
Emacs that integrate with major modes like Org-mode.")
|
||||
(home-page "https://github.com/hlissner/emacs-doom-themes")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public emacs-elixir-mode
|
||||
(package
|
||||
(name "emacs-elixir-mode")
|
||||
(version "2.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://stable.melpa.org/packages/elixir-mode-"
|
||||
version
|
||||
".tar"))
|
||||
(sha256
|
||||
(base32
|
||||
"091cizxg1aw8bkj58y048mj020ssapjflav633z9bl6gmi10dy4v"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-pkg-info" ,emacs-pkg-info)))
|
||||
(home-page
|
||||
"https://github.com/elixir-editors/emacs-elixir")
|
||||
(synopsis "Major mode for editing Elixir files")
|
||||
(description
|
||||
"Elixir-Mode Provides font-locking, indentation and navigation support
|
||||
for the Elixir programming language.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue