From 586e1611b9562248ab32903fd3d98211de445533 Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Sat, 14 Dec 2019 18:44:25 -0600 Subject: 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 505594aa0d..9f5a5b9cbb 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+))) -- cgit v1.2.3