[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: Add emacs-ssh-config-mode.
From: |
guix-commits |
Subject: |
05/05: gnu: Add emacs-ssh-config-mode. |
Date: |
Wed, 21 Aug 2019 08:17:13 -0400 (EDT) |
jlicht pushed a commit to branch master
in repository guix.
commit c8c42d878618271a3db4fd8c1cb11f15aa38f452
Author: Jelle Licht <address@hidden>
Date: Sun Jul 21 16:56:44 2019 +0200
gnu: Add emacs-ssh-config-mode.
* gnu/packages/emacs-xyz.scm (emacs-ssh-config-mode): New variable.
---
gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6ea8511..2f5bf05 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -17635,3 +17635,31 @@ JIRA issue servers.")
(description
"Major mode for editing systemd units in GNU Emacs.")
(license license:gpl3+)))
+
+(define-public emacs-ssh-config-mode
+ (let ((commit "4c1dfa57d452cb5654453bf186c8ff63e1e71b56")
+ (revision "1"))
+ (package
+ (name "emacs-ssh-config-mode")
+ (version (git-version "8.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/jhgorrell/ssh-config-mode-el.git")
+ (commit commit)))
+ (file-name (git-file-name name commit))
+ (sha256
+ (base32
+ "0crglfdazzckizbwzmgl2rn6j85avfzkr1q7ijxd17rp2anvr9bd"))))
+ (build-system emacs-build-system)
+ (arguments '(#:include '("\\.el$" "\\.txt$")))
+ (home-page
+ "https://github.com/jhgorrell/ssh-config-mode-el")
+ (synopsis
+ "Mode for fontification of ~/.ssh/config")
+ (description
+ "This packages fontifies the ssh config keywords and creates
+keybindings for skipping from host section to host section.")
+ (license license:gpl3+))))