gnu: emacs-alchemist: Add alchemist-server output.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: I0dd3a066eb0903a1f82331a3d3b0cdffbd14e7ff
This commit is contained in:
emma thompson 2024-10-05 21:25:40 +00:00 committed by Nicolas Goaziou
parent 689eb490a2
commit ba2f4fa9c4
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -4046,6 +4046,18 @@ installed on your machine and launch it.")
(build-system emacs-build-system)
(propagated-inputs
(list emacs-elixir-mode emacs-dash emacs-company emacs-pkg-info))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'install-server
(lambda _
(let ((server (string-append #$output
"/share/emacs/site-lisp/"
"alchemist-1.8.2/alchemist-server")))
(mkdir-p server)
(copy-recursively "alchemist-server" server)
(delete-file-recursively (string-append server "/test"))))))))
(home-page "http://www.github.com/tonini/alchemist.el")
(synopsis "Elixir tooling integration into Emacs")
(description