summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <[email protected]>2025-02-02 01:47:20 +0100
committerDanny Milosavljevic <[email protected]>2025-02-02 01:47:20 +0100
commit0550c4191fae3b3b00b8bb9faba8a2fe2ad0d188 (patch)
tree89de02db22134b2cd05c17b1efc6336f9e3cddaa
parente16d89d4c0ffcceaa89a29dbabd4a382d9a01375 (diff)
gnu: Add go-github-com-vektah-gqlparser-v2.
* gnu/packages/golang-xyz.scm (go-github-com-vektah-gqlparser-v2): New variable. Change-Id: I3cbf496ed9c85e0576b6034162f6911b775cde90
-rw-r--r--gnu/packages/golang-xyz.scm42
1 files changed, 42 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a121d93ba1..eebdf8a432 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -17904,6 +17904,48 @@ converting them to the often much more useful @@code{time.Duration}.")
"This package provides a Go implementation to calculate Levenshtein
Distance.")
(license license:expat)))
+
+(define-public go-github-com-vektah-gqlparser-v2
+ (package
+ (name "go-github-com-vektah-gqlparser-v2")
+ (version "2.5.21")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vektah/gqlparser")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0hrzm9f3kvcblff4hypf1p95kxsv5pww7vcghhw2jb7r8r4kmdf0"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/vektah/gqlparser/v2"
+ #:unpack-path "github.com/vektah/gqlparser/v2"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'embed
+ (lambda _
+ ;; <https://groups.google.com/g/golang-nuts/c/GgSbsG4wGCU> says
+ ;; that the file to be embedded must not be a symlink.
+ ;; We symlink all the things. That won't end well.
+ (invoke "cp" "-L"
+ "src/github.com/vektah/gqlparser/v2/validator/prelude.graphql"
+ "src/github.com/vektah/gqlparser/v2/validator/prelude.graphql.x")
+ (delete-file "src/github.com/vektah/gqlparser/v2/validator/prelude.graphql")
+ (rename-file "src/github.com/vektah/gqlparser/v2/validator/prelude.graphql.x"
+ "src/github.com/vektah/gqlparser/v2/validator/prelude.graphql"))))))
+ (propagated-inputs (list go-gopkg-in-yaml-v3
+ go-github-com-stretchr-testify
+ go-github-com-andreyvit-diff
+ go-github-com-agnivade-levenshtein))
+ (home-page "https://github.com/vektah/gqlparser")
+ (synopsis "GraphQL parser for Go")
+ (description
+ "This is a parser for GraphQL, written to mirror the graphql-js reference
+implementation as closely while remaining idiomatic and easy to use.")
+ (license license:expat)))
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar