[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: Add emacs-parseclj.
From: |
guix-commits |
Subject: |
01/04: gnu: Add emacs-parseclj. |
Date: |
Sat, 14 Dec 2019 19:58:54 -0500 (EST) |
brettgilio pushed a commit to branch master
in repository guix.
commit 586e1611b9562248ab32903fd3d98211de445533
Author: Brett Gilio <address@hidden>
Date: Sat Dec 14 18:44:25 2019 -0600
gnu: Add emacs-parseclj.
* gnu/packages/emacs-xyz.scm (emacs-parseclj): New variable.
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 505594a..9f5a5b9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20522,3 +20522,27 @@ on removable volumes in Linux.")
data, including buffers, window configuration, variables, and more.")
(home-page "https://github.com/thierryvolpiatto/psession")
(license license:gpl3+))))
+
+(define-public emacs-parseclj
+ (package
+ (name "emacs-parseclj")
+ (version "0.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/clojure-emacs/parseclj.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "03bm5dm4hmkqimv4wqxjjh5814pxysmm7z54bv2rf7zwv1x7dggr"))))
+ (build-system emacs-build-system)
+ (propagated-inputs `(("emacs-a" ,emacs-a)))
+ (home-page "https://cider.mx")
+ (synopsis "Clojure parser for Emacs Lisp")
+ (description
+ "An Emacs Lisp library for parsing Clojure code and EDN data.
+It supports several input and output formats, all powered by the
+same shift-reduce parser function.")
+ (license license:gpl3+)))