diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2019-11-02 22:17:09 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-11-02 22:17:09 +0300 |
| commit | d2791995dd2675bd222d3fb5030a50ef552e82e0 (patch) | |
| tree | 7c61c605bcdd7f7749d60c2bf9fb8ab62742044b | |
| parent | guix: Delete emacs-tramp-auto-auth. (diff) | |
| download | guix-wigust-d2791995dd2675bd222d3fb5030a50ef552e82e0.tar.gz | |
guix: Add emacs-tramp-auto-auth-my.
* guix/wigust/packages/emacs.scm (emacs-tramp-auto-auth-my): New variable.
| -rw-r--r-- | guix/wigust/packages/emacs.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/guix/wigust/packages/emacs.scm b/guix/wigust/packages/emacs.scm index 34c64bf..268d6f7 100644 --- a/guix/wigust/packages/emacs.scm +++ b/guix/wigust/packages/emacs.scm @@ -1416,6 +1416,22 @@ For AsciiDoc customization see Magit and the rest of Emacs.") (license license:gpl3+)))) +(define-public emacs-tramp-auto-auth-my + (let ((commit "21bf0950f03e13d0a442aac6c40ae4e7c51531b3")) + (package + (inherit emacs-tramp-auto-auth) + (name "emacs-tramp-auto-auth-my") + (version (git-version "20191027" "1" commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wigust/tramp-auto-auth.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "18brdnhg2k0dqpkd2rfr0wvqiggmq1k27y89sjld670pb4v1gjin"))))))) + (define-public emacs-apache-mode (let ((commit "354f9302a8d805ac80d846adcd1cef10830b3d51")) (package |
