mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01:00
gnu: Add emacs-docker-tramp.
* gnu/packages/emacs-xyz.scm (emacs-docker-tramp): New variable.
This commit is contained in:
parent
7757e6d8b9
commit
3899ae891c
1 changed files with 21 additions and 0 deletions
|
@ -13373,3 +13373,24 @@ (define-public emacs-lisp-extra-font-lock
|
|||
is created (bound, for example, by let) as well as quoted and backquoted
|
||||
constant expressions.")
|
||||
(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+)))
|
||||
|
|
Loading…
Reference in a new issue