gnu: Add go-github-com-go-openapi-jsonpointer.

* gnu/packages/golang-web.scm (go-github-com-go-openapi-jsonpointer):
New variable.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: I85a2342fa9740fa68ad52c6391465d30a284986d
This commit is contained in:
Leo Nikkilä 2024-08-24 16:46:00 +01:00 committed by Sharlatan Hellseher
parent a2a8a7ec70
commit b7aec88a8f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1371,6 +1371,34 @@ language.")
found in the go-openapi toolkit.")
(license license:asl2.0)))
(define-public go-github-com-go-openapi-jsonpointer
(package
(name "go-github-com-go-openapi-jsonpointer")
(version "0.21.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/go-openapi/jsonpointer")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "17gb0ab2r61j4gqbpwgpz6cvf9jy91xwn11gkbg3b1rq797if7vc"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/go-openapi/jsonpointer"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-go-openapi-swag))
(home-page "https://github.com/go-openapi/jsonpointer")
(synopsis "JSON Pointer with structs")
(description
"This package provides an implementation of JSON Pointer, initially
prototyped in @url{https://github.com/xeipuuv/gojsonpointer}.")
(license license:asl2.0)))
(define-public go-github-com-go-openapi-swag
(package
(name "go-github-com-go-openapi-swag")