mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add emacs-language-id.
* gnu/packages/emacs-xyz.scm (emacs-language-id): New variable. Change-Id: I2866a788777b958c029b877b01ff7c5a35cb6729
This commit is contained in:
parent
c81ed09700
commit
0f8bb376b7
1 changed files with 20 additions and 0 deletions
|
@ -3233,6 +3233,26 @@ (define-public emacs-reformatter
|
|||
optional minor mode which can apply this command automatically on save.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-language-id
|
||||
(package
|
||||
(name "emacs-language-id")
|
||||
(version "0.20")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/lassik/emacs-language-id.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"153810jq4rbgpzvbhz2i1dyrj8bmdf4zxsrhfg0b70iq4bh78bz6"))))
|
||||
(build-system emacs-build-system)
|
||||
(synopsis "Identify programming language used in Emacs buffers")
|
||||
(description "This package provides a way for Emacs to identify the
|
||||
programming language used in an Emacs buffer.")
|
||||
(home-page "https://github.com/lassik/emacs-language-id")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public emacs-relative-buffers
|
||||
(let ((release "0.0.1")
|
||||
(revision "0")
|
||||
|
|
Loading…
Reference in a new issue