gnu: Add emacs-systemd-mode.

* gnu/packages/emacs-xyz.scm (emacs-systemd-mode): New variable.
master
Jelle Licht 2019-07-21 16:56:31 +02:00
parent 04e748465c
commit e6b7f90eba
No known key found for this signature in database
GPG Key ID: DA4597F947B41025
1 changed files with 22 additions and 0 deletions

View File

@ -17613,3 +17613,25 @@ contains a track position, playback will start at the specified position.")
"This package provides an extension to org-mode for syncing issues with
JIRA issue servers.")
(license license:gpl3+)))
(define-public emacs-systemd-mode
(package
(name "emacs-systemd-mode")
(version "1.6")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/holomorph/systemd-mode.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0ylgnvpfindg4cxccbqy02ic7p0i9rygf1w16dm1filwhbqvjplq"))))
(build-system emacs-build-system)
(arguments '(#:include '("\\.el$" "\\.txt$")))
(home-page "https://github.com/holomorph/systemd-mode")
(synopsis
"Major mode for editing systemd units")
(description
"Major mode for editing systemd units in GNU Emacs.")
(license license:gpl3+)))