summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2019-08-23 12:15:39 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2019-08-23 12:15:54 +0300
commitf99fefe9412888f8208fe733d462e76d49e6a5b2 (patch)
treeefd6ced9488608acf73dcc6548a24641560cfca3
parentchannels.scm: Update guix. (diff)
downloadguix-wigust-origin/wip-emacs-tramp-auto-auth.tar.gz
guix: Add emacs-tramp-auto-auth.origin/wip-emacs-tramp-auto-auth
* guix/wigust/packages/emacs.scm (emacs-tramp-auto-auth): New variable.
-rw-r--r--guix/wigust/packages/emacs.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/guix/wigust/packages/emacs.scm b/guix/wigust/packages/emacs.scm
index 35641d8..df927fe 100644
--- a/guix/wigust/packages/emacs.scm
+++ b/guix/wigust/packages/emacs.scm
@@ -1393,3 +1393,25 @@ For AsciiDoc customization see
Magit and the rest of Emacs.")
(license license:gpl3+))))
+(define-public emacs-tramp-auto-auth
+ (let ((commit "20216fca1f2f7c5d9beec8bda59e56c91ee07d41"))
+ (package
+ (name "emacs-tramp-auto-auth")
+ (version (git-version "0.0.1" "1" commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.wugi.info/emacs/emacs-tramp-auto-auth.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1288crwhpwhxzq10pnviq80k9jh3waq375mljyqcwm9w15a9967f"))))
+ (build-system emacs-build-system)
+ (home-page "https://gitlab.wugi.info/emacs/emacs-tramp-auto-auth/")
+ (synopsis "Feed TRAMP with passwords for paths matching regexps")
+ (description "This library provides @code{tramp-auto-auth-mode}: a global
+minor mode whose purpose is to automatically feed TRAMP sub-processes with
+passwords for paths matching regexps.")
+ (license license:gpl3+))))
+