gnu: Add emacs-elf-mode.

* gnu/packages/emacs-xyz.scm (emacs-elf-mode): New variable.
This commit is contained in:
John Soo 2020-04-01 10:43:44 +02:00 committed by Nicolas Goaziou
parent 61e10fa839
commit 31e47945d3
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1824,6 +1824,27 @@ (define-public emacs-direnv
environment set through Direnv.")
(license license:gpl3+)))
(define-public emacs-elf-mode
(package
(name "emacs-elf-mode")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/abo-abo/elf-mode")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0cbvjbk2893ag1iy8ggixpirfiyhssm7fii96hb9jqdz874cdl0k"))))
(build-system emacs-build-system)
(home-page "https://github.com/abo-abo/elf-mode")
(synopsis "Show symbol list when opening a binary file in Emacs")
(description "This Emacs package provides a command showing the symbols
that the binary uses instead of the actual binary contents.")
(license license:gpl3+)))
(define-public emacs-ggtags
(package
(name "emacs-ggtags")