Archived
1
0
Fork 0

gnu: emacs-graphql: Update to 0.1.2.

* gnu/packages/emacs-xyz.scm (emacs-graphql): Update to 0.1.2.
[source]<origin>: Remove snippet.  The file it removed no longer exist in the
code base.
[propagated-inputs]: Add EMACS-GHUB.
This commit is contained in:
Nicolas Goaziou 2022-12-21 10:37:46 +01:00
parent 7c9cbc8d73
commit 6ad3b70297
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1577,33 +1577,29 @@ you will die. The game builds the list of words from the active buffer.")
(license license:gpl2+)))) (license license:gpl2+))))
(define-public emacs-graphql (define-public emacs-graphql
(package (let ((commit "b57b5ca5d2d0837e1fb4a4f30c051d5f3e643f0f")) ;version bump
(name "emacs-graphql") (package
(version "0.1.1") (name "emacs-graphql")
(source (origin (version "0.1.2")
(modules '((guix build utils))) (source (origin
;; Remove examples file with references to external packages as (method git-fetch)
;; they do not exist at compilation time. (uri (git-reference
(snippet (url "https://github.com/vermiculus/graphql.el")
'(begin (delete-file "examples.el"))) (commit commit)))
(method git-fetch) (file-name (git-file-name name version))
(uri (git-reference (sha256
(url "https://github.com/vermiculus/graphql.el") (base32
(commit version))) "18k2c2b7y5qgc7qpkqjmz1nv61w470ja3vwprmy5dlkzficzqsvf"))))
(file-name (git-file-name name version)) (build-system emacs-build-system)
(sha256 (propagated-inputs (list emacs-ghub))
(base32 (home-page "https://github.com/vermiculus/graphql.el")
"0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw")))) (synopsis "GraphQL utilities")
(build-system emacs-build-system) (description
(home-page "GraphQL.el provides a generally-applicable domain-specific language for
"https://github.com/vermiculus/graphql.el")
(synopsis "GraphQL utilities")
(description
"GraphQL.el provides a generally-applicable domain-specific language for
creating and executing GraphQL queries against your favorite web services. creating and executing GraphQL queries against your favorite web services.
GraphQL is a data query language and runtime designed and used to request and GraphQL is a data query language and runtime designed and used to request and
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 (define-public emacs-graphql-mode
;; No tagged commit. No "Version" keyword either. ;; No tagged commit. No "Version" keyword either.