mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add emacs-platformio-mode.
* gnu/packages/emacs-xyz.scm (emacs-platformio-mode): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
0f04db3262
commit
9ea5a66e30
1 changed files with 21 additions and 0 deletions
|
@ -568,6 +568,27 @@ (define-public emacs-hgignore-mode
|
|||
system.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-platformio-mode
|
||||
(package
|
||||
(name "emacs-platformio-mode")
|
||||
(version "0.3.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ZachMassia/PlatformIO-Mode")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ian50v9vaz7kqzn20bhqadq50h0l3zhjkmniinpz4q9klh7drh9"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-async emacs-projectile))
|
||||
(home-page "https://github.com/zachmassia/platformio-mode")
|
||||
(synopsis "Minor mode for building and uploading PlatformIO projects")
|
||||
(description "This package provices an Emacs minor mode for building and
|
||||
uploading PlatformIO projects.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-hyperbole
|
||||
(package
|
||||
(name "emacs-hyperbole")
|
||||
|
|
Loading…
Reference in a new issue