[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/09: gnu: Add emacs-citre.
From: |
guix-commits |
Subject: |
08/09: gnu: Add emacs-citre. |
Date: |
Fri, 6 Jan 2023 18:51:08 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit 605a14a176c558458748c68a89df944b1993c549
Author: Feng Shu <tumashu@163.com>
AuthorDate: Sat Jan 7 00:41:07 2023 +0100
gnu: Add emacs-citre.
* gnu/packages/emacs-xyz.scm (emacs-citre): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5718541971..d360d5606f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34148,6 +34148,49 @@ wraps GNU Global calls and integration to editor using
this API with
project.el and xref.el.")
(license license:gpl3+))))
+(define-public emacs-citre
+ (package
+ (name "emacs-citre")
+ (version "0.3.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/universal-ctags/citre/")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32 "168z6yidh2nxkmdlx9cqdzzb7achxdipnbk5pj9787m9bp1sdpkd"))
+ (file-name (git-file-name name version))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'set-external-programs
+ (lambda* (#:key inputs #:allow-other-keys)
+ (emacs-substitute-variables "citre-ctags.el"
+ ("citre-ctags-program"
+ (search-input-file inputs "/bin/ctags")))
+ (emacs-substitute-variables "citre-readtags.el"
+ ("citre-readtags-program"
+ (search-input-file inputs "/bin/readtags")))
+ (emacs-substitute-variables "citre-global.el"
+ ("citre-gtags-program"
+ (search-input-file inputs "/bin/gtags")))
+ (emacs-substitute-variables "citre-global.el"
+ ("citre-global-program"
+ (search-input-file inputs "/bin/global"))))))))
+ (inputs (list global universal-ctags))
+ (home-page "https://github.com/universal-ctags/citre")
+ (synopsis "Ctags IDE on the True Editor")
+ (description
+ "Citre is an advanced Ctags (or actually, readtags) frontend for
+Emacs. It offers Completion At Point, Xref and Imenu integration. It also
+prodites a Completing Read UI for jumping to definition and a powerful code
+reading tool that lets you go down the rabbit hole without leaving current
+buffer.")
+ (license license:gpl3+)))
+
(define-public emacs-seq
(package
(name "emacs-seq")
- branch master updated (cce9ff2d5a -> d16edd03cf), guix-commits, 2023/01/06
- 01/09: gnu: emacs-benchmark-init: Update to 1.1., guix-commits, 2023/01/06
- 03/09: gnu: emacs-consult: Update to 0.31., guix-commits, 2023/01/06
- 05/09: gnu: emacs-pyim-basedict: Install pyim-basedict.pyim file., guix-commits, 2023/01/06
- 06/09: gnu: Add emacs-cal-china-x., guix-commits, 2023/01/06
- 07/09: gnu: Add emacs-ebdb-i18n-chn., guix-commits, 2023/01/06
- 02/09: gnu: emacs-compat: Update to 29.1.0.1., guix-commits, 2023/01/06
- 09/09: gnu: emacs-company-posframe: Update to 0.7.0., guix-commits, 2023/01/06
- 04/09: gnu: emacs-inspector: Update to 0.10., guix-commits, 2023/01/06
- 08/09: gnu: Add emacs-citre.,
guix-commits <=