gnu: Add emacs-intel-hex-mode

* gnu/packages/emacs-xyz.scm (emacs-intel-hex-mode): New variable.
This commit is contained in:
Collin J. Doering 2019-06-23 19:26:11 -04:00
parent 71a8491efa
commit 329851cffb
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 23 additions and 0 deletions

View File

@ -24231,3 +24231,26 @@ mode, regardless of indent width, even in languages with non-uniform
indentation such as Haskell. This mode works properly around hard tabs and indentation such as Haskell. This mode works properly around hard tabs and
mixed indentation, and it behaves well in large buffers.") mixed indentation, and it behaves well in large buffers.")
(license #f))) (license #f)))
(define-public emacs-intel-hex-mode
(package
(name "emacs-intel-hex-mode")
(version "20180423.31")
(source
(origin
(method url-fetch)
(uri (string-append
"https://melpa.org/packages/intel-hex-mode-"
version
".el"))
(sha256
(base32
"1nvwjk686wna96srk3y9xniixas729x6m1rcjnc8lz1zkap9z9bv"))))
(build-system emacs-build-system)
(home-page
"https://github.com/mschuldt/intel-hex-mode")
(synopsis "Mode for Intel Hex files")
(description
"Use this mode for editing files in the intel hex format. The
intel-hex-mode will do font locking, and calculate checksums.")
(license license:gpl2)))