guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-anakondo.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-anakondo.
Date: Sat, 05 Jun 2021 08:11:20 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0a4b2da  gnu: Add emacs-anakondo.
0a4b2da is described below

commit 0a4b2da0ed817f95a55e57d5756b389cf71f90b5
Author: Alexandr Vityazev <avityazev@posteo.org>
AuthorDate: Sat Jun 5 14:10:54 2021 +0200

    gnu: Add emacs-anakondo.
    
    * gnu/packages/emacs-xyz.scm (emacs-anakondo): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e13ca41..0a96d95 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8967,6 +8967,31 @@ It is recommended to use @code{clojure-mode} with 
Paredit or Smartparens.")
        "This package provides Yasnippets snippets for Clojure.")
       (license license:gpl3+))))
 
+(define-public emacs-anakondo
+  ;; This particular commit introduces bug fixes above latest release.
+  (let ((version "0.2.1")
+        (revision "0")
+        (commit "c48518560815c49d8d78fb9069906d17e883385e"))
+    (package
+      (name "emacs-anakondo")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/didibus/anakondo";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1fzsqd150gpmrj8kz3zy9cd78x9vank7ra720mljhyf04z0h1mj6"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/didibus/anakondo";)
+      (synopsis "clj-kondo based Clojure[Script] editing facilities")
+      (description
+       "This package makes use of clj-kondo's analysis data to provide code
+editing facilities related to Clojure, ClojureScript and cljc source.")
+      (license license:expat))))
+
 (define-public emacs-epl
   (package
     (name "emacs-epl")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]