mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 10:16:45 +01:00
gnu: Add go-github-com-go-openapi-jsonreference.
* gnu/packages/golang-web.scm (go-github-com-go-openapi-jsonreference): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: I55eb6403fb5b7460d74c7b21a38b85b2194304d8
This commit is contained in:
parent
b7aec88a8f
commit
82c63dfe31
1 changed files with 29 additions and 0 deletions
|
@ -1399,6 +1399,35 @@ (define-public go-github-com-go-openapi-jsonpointer
|
|||
prototyped in @url{https://github.com/xeipuuv/gojsonpointer}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-go-openapi-jsonreference
|
||||
(package
|
||||
(name "go-github-com-go-openapi-jsonreference")
|
||||
(version "0.21.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/go-openapi/jsonreference")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1121cnjjh07qdl4jdrd46kmdhx4dgsxn02rvsq5xzapl8gz5nhcn"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/go-openapi/jsonreference"))
|
||||
(native-inputs (list go-github-com-stretchr-testify))
|
||||
(propagated-inputs
|
||||
(list go-github-com-go-openapi-jsonpointer
|
||||
go-github-com-go-openapi-swag
|
||||
go-github-com-puerkitobio-purell))
|
||||
(home-page "https://github.com/go-openapi/jsonreference")
|
||||
(synopsis "JSON Reference with structs")
|
||||
(description
|
||||
"This package provides an implementation of JSON Reference, initially
|
||||
prototyped in @url{https://github.com/xeipuuv/gojsonreference}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-go-openapi-swag
|
||||
(package
|
||||
(name "go-github-com-go-openapi-swag")
|
||||
|
|
Loading…
Reference in a new issue