From 3899ae891cfc7763a1e6201b212010ea8f64d038 Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Mon, 11 Mar 2019 20:42:18 +0300 Subject: gnu: Add emacs-docker-tramp. * gnu/packages/emacs-xyz.scm (emacs-docker-tramp): New variable. --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d3b2fc8ec6..45dab3cd5d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13373,3 +13373,24 @@ paragraphs or pages of text for testing purposes.") 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+))) -- cgit v1.2.3