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 Noah Landis <noahlandis@posteo.net>
|
||||||
;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
|
;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
|
||||||
;;; Copyright © 2020 André A. Gomes <andremegafone@gmail.com>
|
;;; Copyright © 2020 André A. Gomes <andremegafone@gmail.com>
|
||||||
|
;;; Copyright © 2020 Jonathan Rostran <rostranjj@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -25790,6 +25791,25 @@ work on alists, hash-table and arrays. All functions are prefixed with
|
||||||
@code{map-}.")
|
@code{map-}.")
|
||||||
(license license:gpl3+)))
|
(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
|
(define-public emacs-burly
|
||||||
(package
|
(package
|
||||||
(name "emacs-burly")
|
(name "emacs-burly")
|
||||||
|
|
Reference in a new issue