diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-07-27 21:57:07 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-08-20 10:18:58 +0200 |
commit | 61bf47d00cdbb228e18d296fbda643a0e1626e92 (patch) | |
tree | 751f16f8fc9042d740911e478940f4a8e4aa982b /gnu/packages | |
parent | 7f14eda95f5f5694cb62decb1bcff46685b9c287 (diff) | |
download | guix-61bf47d00cdbb228e18d296fbda643a0e1626e92.tar guix-61bf47d00cdbb228e18d296fbda643a0e1626e92.tar.gz |
gnu: Add emacs-ssh-deploy.
* gnu/packages/emacs-xyz.scm (emacs-ssh-deploy): New variable.
Change-Id: I016d3c15f376c099f260d955672bab2b19f8b978
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5f76965c6d..51e9065650 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -35164,6 +35164,28 @@ It can also be useful on Unix-like platforms to delay having to enter your passphrase until the first time you push to a remote.") (license license:gpl3+))) +(define-public emacs-ssh-deploy + (package + (name "emacs-ssh-deploy") + (version "3.1.16") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/ssh-deploy-" version + ".tar")) + (sha256 + (base32 "0fb88l3270d7l808q8x16zcvjgsjbyhgifgv17syfsj0ja63x28p")))) + (build-system emacs-build-system) + (home-page "https://github.com/cjohansson/emacs-ssh-deploy") + (synopsis "Deployment via Tramp, global or per directory.") + (description + "SSH Deploy enables automatic deploys on explicit-save actions, manual +uploads, renaming, deleting, downloads, file and directory differences, +launching remote terminals (Eshell, Shell), detection of remote changes, +remote directory browsing, remote SQL database sessions and running custom +deployment scripts via Tramp.") + (license license:gpl3+))) + (define-public emacs-super-save (package (name "emacs-super-save") |