guix-commits
[Top][All Lists]
Advanced

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

88/88: gnu: Add emacs-company-restclient.


From: Oleg Pykhalov
Subject: 88/88: gnu: Add emacs-company-restclient.
Date: Wed, 2 May 2018 13:21:20 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit deef6d7c8be5a3216ecf10b49d86e829b9fbf7f4
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:15:21 2018 +0300

    gnu: Add emacs-company-restclient.
    
    * gnu/packages/emacs.scm (emacs-company-restclient): New public variable.
---
 gnu/packages/emacs.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index c6f8795..e6429d7 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10221,3 +10221,32 @@ tries to commit changes to a file after every save.
 When @code{gac-automatically-push-p} is non-nil, it also tries to push to
 the current upstream.")
     (license license:gpl3+)))
+
+(define-public emacs-company-restclient
+  (package
+    (name "emacs-company-restclient")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/iquiw/company-restclient/archive/";
+             "v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-company" ,emacs-company)
+       ("emacs-know-your-http-well" ,emacs-know-your-http-well)
+       ("emacs-restclient" ,emacs-restclient)))
+    (home-page "https://github.com/iquiw/company-restclient";)
+    (synopsis "Company-mode completion back-end for restclient-mode")
+    (description "@code{company-mode} back-end for
address@hidden
+
+It provides auto-completion for HTTP methods and headers in
address@hidden  Completion source is given by
address@hidden")
+    (license license:gpl3+)))



reply via email to

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