mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add emacs-xref.
* gnu/packages/emacs-xyz.scm (emacs-xref): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
ab155471de
commit
c81a21ac2a
1 changed files with 20 additions and 0 deletions
|
@ -87,6 +87,7 @@
|
|||
;;; Copyright © 2020 Noah Landis <noahlandis@posteo.net>
|
||||
;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
|
||||
;;; Copyright © 2020 André A. Gomes <andremegafone@gmail.com>
|
||||
;;; Copyright © 2020 Jonathan Rostran <rostranjj@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -25790,6 +25791,25 @@ (define-public emacs-map
|
|||
@code{map-}.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-xref
|
||||
(package
|
||||
(name "emacs-xref")
|
||||
(version "1.0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://elpa.gnu.org/packages/"
|
||||
"xref-" version ".el"))
|
||||
(sha256
|
||||
(base32 "1r531gl73y1br8g4n77gxbyj26yiaw7snjad21fgs5m80cka8fi3"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "http://elpa.gnu.org/packages/xref.html")
|
||||
(synopsis "Cross-referencing commands")
|
||||
(description
|
||||
"This library provides a generic infrastructure for cross referencing
|
||||
commands, in particular @code{find-definition}.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-burly
|
||||
(package
|
||||
(name "emacs-burly")
|
||||
|
|
Loading…
Reference in a new issue