[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61758] [PATCH 7/8] gnu: Add emacs-cider-eval-sexp-fu.
From: |
Rostislav Svoboda |
Subject: |
[bug#61758] [PATCH 7/8] gnu: Add emacs-cider-eval-sexp-fu. |
Date: |
Fri, 24 Feb 2023 15:18:18 +0100 |
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c5e9b0c792..ab81ea2a43 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14040,6 +14040,28 @@ (define-public emacs-cider
CIDER).")
(license license:gpl3+)))
+(define-public emacs-cider-eval-sexp-fu
+ (package
+ (name "emacs-cider-eval-sexp-fu")
+ (version "1.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/clojure-emacs/cider-eval-sexp-fu")
+ (commit "7fd229f1441356866aedba611fd0cf4e89b50921")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "01gky548v3758fyr317lkwsc9aacab6m9d9vk1mrr3qyvmciwd51"))))
+ (build-system emacs-build-system)
+ (inputs (list emacs-eval-sexp-fu-el))
+ (home-page "https://github.com/clojure-emacs/cider-eval-sexp-fu")
+ (synopsis "eval-sexp-fu.el extensions for CIDER")
+ (description
+ "eval-sexp-fu provides tiny improvements to expression evaluation -
+e.g. the expression you've just evaluated would briefly flash and so on.")
+ (license license:gpl3+)))
+
(define-public emacs-sly
;; Update together with sbcl-slynk.
(let ((commit "4513c382f07a2a2cedb3c046231b69eae2f5e6f0")
--
2.39.1
- [bug#61753] [PATCH 1/8] gnu: Add emacs-font-lock+., Rostislav Svoboda, 2023/02/24
- [bug#61755] [PATCH 4/8] gnu: Add emacs-ace-jump-helm-line., Rostislav Svoboda, 2023/02/24
- [bug#61754] [PATCH 3/8] gnu: Add emacs-ac-ispell., Rostislav Svoboda, 2023/02/24
- [bug#61756] [PATCH 5/8] gnu: Add emacs-xcscope., Rostislav Svoboda, 2023/02/24
- [bug#61752] [PATCH 2/8] gnu: Add emacs-cfrs., Rostislav Svoboda, 2023/02/24
- [bug#61759] [PATCH 8/8] gnu: Add emacs-afternoon-theme., Rostislav Svoboda, 2023/02/24
- [bug#61757] [PATCH 6/8] gnu: Add emacs-ac-php., Rostislav Svoboda, 2023/02/24
- [bug#61758] [PATCH 7/8] gnu: Add emacs-cider-eval-sexp-fu.,
Rostislav Svoboda <=