[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/24: gnu: Add emacs-xcscope.
From: |
guix-commits |
Subject: |
01/24: gnu: Add emacs-xcscope. |
Date: |
Wed, 15 Mar 2023 19:18:18 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 28bf6720e7d2becd25371e6d069365e583e5988f
Author: Rostislav Svoboda <rostislav.svoboda@gmail.com>
AuthorDate: Sat Mar 11 14:08:45 2023 +0100
gnu: Add emacs-xcscope.
* gnu/packages/emacs-xyz.scm (emacs-xcscope): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8974794221..dba52d4918 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4176,6 +4176,39 @@ lines spanning the entire window. The minor mode is
suitable for inclusion
into mode hooks and is intended to be used that way.")
(license license:gpl3+)))
+(define-public emacs-xcscope
+ (let ((commit "d228d7593d762e457340f678d14b663ef66d7cee")
+ (revision "0"))
+ (package
+ (name "emacs-xcscope")
+ (version (git-version "1.5" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dkogan/xcscope.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0pr85ywp585imjzswm04647nb4iqqvg8jgmbcs5210qmr9kh0z8d"))))
+ (build-system emacs-build-system)
+ (inputs (list cscope))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'substitute-cscope-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (emacs-substitute-variables "xcscope.el"
+ ("cscope-program"
+ (search-input-file inputs "/bin/cscope"))))))))
+ (home-page "https://github.com/dkogan/xcscope.el")
+ (synopsis "Interface to the source cross-referencing tool Cscope")
+ (description
+ "Xcscope is an Emacs interface to Cscope, the source cross-referencing
+tool.")
+ (license license:gpl2+))))
+
(define-public emacs-ggtags
(package
(name "emacs-ggtags")
- branch master updated (4496ff34a3 -> e36a914878), guix-commits, 2023/03/15
- 01/24: gnu: Add emacs-xcscope.,
guix-commits <=
- 05/24: gnu: Add julia-cstparser., guix-commits, 2023/03/15
- 06/24: gnu: emacs-julia-snail: Update propagated-inputs., guix-commits, 2023/03/15
- 09/24: gnu: emacs-xref: Update to 1.6.3., guix-commits, 2023/03/15
- 03/24: gnu: emacs-julia-snail: Update include list., guix-commits, 2023/03/15
- 07/24: gnu: emacs-subed: Update to 1.2.0., guix-commits, 2023/03/15
- 11/24: gnu: emacs-citar: Run tests., guix-commits, 2023/03/15
- 13/24: gnu: emacs-consult: Update to 0.33., guix-commits, 2023/03/15
- 16/24: gnu: emacs-vertico: Update to 1.2., guix-commits, 2023/03/15
- 18/24: gnu: emacs-yaml: Update to 0.5.2., guix-commits, 2023/03/15
- 02/24: gnu: Add emacs-ac-php., guix-commits, 2023/03/15