diff options
author | Leo Nikkilä <hello@lnikki.la> | 2024-08-24 19:37:06 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 20:46:48 +0100 |
commit | 82c63dfe31cc0fc918b11cd3f0f5fa18d0e534f4 (patch) | |
tree | 44b101b786e966fbe7e35887ac839f0de8ec8ad7 /gnu/packages | |
parent | b7aec88a8f560e3c934b6c1c882277d7886b8dd4 (diff) | |
download | guix-82c63dfe31cc0fc918b11cd3f0f5fa18d0e534f4.tar.gz guix-82c63dfe31cc0fc918b11cd3f0f5fa18d0e534f4.zip |
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
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang-web.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 4050a3e370..1b75fb9406 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -1399,6 +1399,35 @@ found in the go-openapi toolkit.") 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") |