mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add emacs-graphql-mode.
* gnu/packages/emacs-xyz.scm (emacs-graphql-mode): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
4d850f7c5a
commit
80641727ed
1 changed files with 28 additions and 0 deletions
|
@ -768,6 +768,34 @@ (define-public emacs-graphql
|
||||||
deliver data to mobile and web apps.")
|
deliver data to mobile and web apps.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-graphql-mode
|
||||||
|
;; No tagged commit.
|
||||||
|
(let ((commit "9bed568ec86242dbe30bdbab324aa0eb2cd9bf08")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "emacs-graphql-mode")
|
||||||
|
(version commit)
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/davazp/graphql-mode")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0x9y7qq6y0zg8ncamzvk68ccmdyzh7xsj0xs0ykyl20d5wdpplj4"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/davazp/graphql-mode")
|
||||||
|
(synopsis "Emacs mode to edit GraphQL schema and queries")
|
||||||
|
(description
|
||||||
|
"This package implements a major mode to edit GraphQL schemas and
|
||||||
|
query. The basic functionality includes syntax highlight and indentation.
|
||||||
|
Additionally, it is able to send GraphQL queries to an end-point URL.
|
||||||
|
|
||||||
|
Files with the @file{.graphql} and @file{.gql} extensions are
|
||||||
|
automatically opened with this mode.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-ghub
|
(define-public emacs-ghub
|
||||||
(package
|
(package
|
||||||
(name "emacs-ghub")
|
(name "emacs-ghub")
|
||||||
|
|
Loading…
Reference in a new issue