me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-janet-mode.

* gnu/packages/emacs-xyz.scm (emacs-janet-mode): New variable.
master
Pierre Neidhardt 2020-11-20 10:12:42 +01:00
parent 7a858c0c0a
commit 23dc8e46a0
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 21 additions and 0 deletions

View File

@ -25477,3 +25477,24 @@ Emacs.")
uncluttered design pattern to achieve optimal focus and readability for code
syntax highlighting and UI components.")
(license license:expat)))
(define-public emacs-janet-mode
(let ((commit "2f5bcabcb6953e1ed1926ba6a2328c453e8b4ac7"))
(package
(name "emacs-janet-mode")
(version (git-version "0.1.0" "1" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ALSchwalm/janet-mode")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0qj0gpycv2f3z1dgz1a27bjn983hrr3ppvrp7csl34lagnmp89rz"))))
(build-system emacs-build-system)
(home-page "https://github.com/ALSchwalm/janet-mode")
(synopsis "Emacs major mode for the Janet programming language")
(description
"This package provides an Emacs major mode for editing Janet files.")
(license license:gpl3))))