[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-global-tags.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-global-tags. |
Date: |
Thu, 07 Oct 2021 12:30:24 -0400 |
This is an automated email from the git hooks/post-receive script.
snape pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 34baab7 gnu: Add emacs-global-tags.
34baab7 is described below
commit 34baab7a7b66610b592a1e5703470c75a1e06c7f
Author: Clément Lassieur <clement@lassieur.org>
AuthorDate: Thu Oct 7 18:08:01 2021 +0200
gnu: Add emacs-global-tags.
* gnu/packages/emacs-xyz.scm (emacs-global-tags): New variable.
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 387acbe..1c37adf 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29560,3 +29560,29 @@ current region or entire buffer.")
It includes syntax highlighting, automatic indentation, and imenu integration.
Unlike Emacs' generic ASM mode, it understands NASM-specific syntax.")
(license license:unlicense)))
+
+(define-public emacs-global-tags
+ (let ((commit "06db25d91cc8bfb5e24e02adc04de1226c7e742d")
+ (revision "0"))
+ (package
+ (name "emacs-global-tags")
+ (version (git-version "0.7" revision commit))
+ (home-page "https://git.launchpad.net/global-tags.el/")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1q30cbqq0h1gfwlcbnx9s930li7w7a0y8sx2ivbvvyyc2j5gsk4j"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-async" ,emacs-async)
+ ("ht" ,emacs-ht)))
+ (synopsis "Testeable Emacs Lisp API that wraps around GNU Global")
+ (description "This package provides a testeable Emacs Lisp API that
+wraps GNU Global calls and integration to editor using this API with
+project.el and xref.el.")
+ (license license:gpl3+))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-global-tags.,
guix-commits <=