diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-07-03 22:30:25 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2017-07-03 22:34:40 +0800 |
commit | aadd75acd60008f65aaba58a27f54b5f5d98eacf (patch) | |
tree | 8b2ada475c7d6f33cc69ad5992effe9c7d56fbe7 | |
parent | 08c1f2d21c4dc25d63807259c36dfa9ebcfde43c (diff) | |
download | patches-aadd75acd60008f65aaba58a27f54b5f5d98eacf.tar patches-aadd75acd60008f65aaba58a27f54b5f5d98eacf.tar.gz |
gnu: Add emacs-emamux.
* gnu/packages/emacs.scm (emacs-emamux): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/emacs.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index a8bf05ca89..560e3528a9 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -5148,3 +5148,24 @@ settings).") It lets you edit a latex fragment in a dedicated buffer just like editing a src block.") (license license:gpl3+))) + +(define-public emacs-emamux + (package + (name "emacs-emamux") + (version "0.14") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/syohex/emacs-emamux/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx")))) + (build-system emacs-build-system) + (home-page "https://github.com/syohex/emacs-emamux") + (synopsis "Manipulate Tmux from Emacs") + (description + "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal +multiplexer.") + (license license:gpl3+))) |