gnu: Add emacs-docker-tramp.

* gnu/packages/emacs-xyz.scm (emacs-docker-tramp): New variable.
This commit is contained in:
Oleg Pykhalov 2019-03-11 20:42:18 +03:00
parent 7757e6d8b9
commit 3899ae891c
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -13373,3 +13373,24 @@ (define-public emacs-lisp-extra-font-lock
is created (bound, for example, by let) as well as quoted and backquoted is created (bound, for example, by let) as well as quoted and backquoted
constant expressions.") constant expressions.")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-docker-tramp
(package
(name "emacs-docker-tramp")
(version "0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-pe/docker-tramp.el")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0lxvzmfg52fhxrhbvp92zwp7cv4i1rlxnkyyzgngj3sjm7y60yvg"))))
(build-system emacs-build-system)
(home-page "https://github.com/emacs-pe/docker-tramp.el")
(synopsis "TRAMP integration for docker containers")
(description
"This package provides a TRAMP method for Docker containers.")
(license license:gpl3+)))