guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

27/88: gnu: Add emacs-edit-server.


From: Oleg Pykhalov
Subject: 27/88: gnu: Add emacs-edit-server.
Date: Wed, 2 May 2018 13:21:08 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 3677e5ee1fed3402e9a424ef4601780bc75c55b8
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:59:06 2018 +0300

    gnu: Add emacs-edit-server.
    
    * gnu/packages/emacs.scm (emacs-edit-server): New public variable.
---
 gnu/packages/emacs.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 2d621ef..fb69094 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8685,3 +8685,30 @@ confused by comments or @code{foo-bar} matching 
@code{foo}.")
       (description
        "@code{crux} provides a collection of useful functions for Emacs.")
       (license license:gpl3+))))
+
+(define-public emacs-edit-server
+  (package
+    (name "emacs-edit-server")
+    (version "1.13")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/";
+                           "v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
+    (build-system emacs-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'chdir-elisp
+           ;; Elisp directory is not in root of the source.
+           (lambda _
+             (chdir "servers"))))))
+    (home-page "https://github.com/stsquad/emacs_chrome";)
+    (synopsis "Server that responds to edit requests from Chromium")
+    (description
+     "This package provides an edit server to respond to requests from Emacs.")
+    (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]