mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add rust-graphql-parser-0.3.
* gnu/packages/crates-io.scm (rust-graphql-parser-0.3): New variable. Change-Id: I1640bddaad6e35be1dd818a4fd271c9a02053816
This commit is contained in:
parent
b1c3e5db4b
commit
85326cc561
1 changed files with 26 additions and 0 deletions
|
@ -30329,6 +30329,32 @@ (define-public rust-goblin-0.6
|
|||
("rust-plain" ,rust-plain-0.2)
|
||||
("rust-scroll" ,rust-scroll-0.11))))))
|
||||
|
||||
(define-public rust-graphql-parser-0.3
|
||||
(package
|
||||
(name "rust-graphql-parser")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "graphql-parser" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1wp6vnrhgi6q3b942zkc6p4mi104gbw71pnc0d5c1ps7ab7d9ayi"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-combine" ,rust-combine-3)
|
||||
("rust-thiserror" ,rust-thiserror-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-pretty-assertions" ,rust-pretty-assertions-0.5))))
|
||||
(home-page "https://github.com/graphql-rust/graphql-parser")
|
||||
(synopsis
|
||||
"Parser, AST and serializer for graphql query language")
|
||||
(description
|
||||
"This package provides a parser, AST and serializer for graphql query
|
||||
language and scheme definition language (sometimes called IDL).")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-greetd-ipc-0.9
|
||||
(package
|
||||
(name "rust-greetd-ipc")
|
||||
|
|
Loading…
Reference in a new issue