mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-xeipuuv-gojsonschema: Move to (gnu packages golang-web).
* gnu/packages/golang.scm (go-github-com-xeipuuv-gojsonschema): Move from here... * gnu/packages/golang-web.scm: ...to here. Change-Id: Iaf68b653f279c98f62ce9e07f2ce010c8e1741e2
This commit is contained in:
parent
ab7511ad0d
commit
65b1156d2b
2 changed files with 41 additions and 40 deletions
|
@ -1202,6 +1202,47 @@ sockets.")
|
||||||
replacement for native @code{net/http} module.")
|
replacement for native @code{net/http} module.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-xeipuuv-gojsonschema
|
||||||
|
(let ((commit "6b67b3fab74d992bd07f72550006ab2c6907c416")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-xeipuuv-gojsonschema")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/xeipuuv/gojsonschema")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1q937a6q7canlr3dllqdw0qwa6z2fpwn1w9kycavx8jmwh6q3f69"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/xeipuuv/gojsonschema"
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'disable-failing-tests
|
||||||
|
(lambda* (#:key import-path #:allow-other-keys)
|
||||||
|
(with-directory-excursion (string-append "src/" import-path)
|
||||||
|
(substitute* "schema_test.go"
|
||||||
|
(("\\{\"phase\": \"remote ref, " all)
|
||||||
|
(string-append "// " all))
|
||||||
|
(("\\{\"phase\": \"valid definition" all)
|
||||||
|
(string-append "// " all))
|
||||||
|
(("\\{\"phase\": \"invalid definition" all)
|
||||||
|
(string-append "// " all)))))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-xeipuuv-gojsonreference
|
||||||
|
go-github-com-xeipuuv-gojsonpointer
|
||||||
|
go-github-com-stretchr-testify))
|
||||||
|
(home-page "https://github.com/xeipuuv/gojsonschema")
|
||||||
|
(synopsis "Implementation of JSON Schema for Go")
|
||||||
|
(description
|
||||||
|
"This package provides an implementation of JSON Schema for the Go
|
||||||
|
programming language, which supports draft-04, draft-06 and draft-07.")
|
||||||
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public go-gopkg-in-square-go-jose-v2
|
(define-public go-gopkg-in-square-go-jose-v2
|
||||||
(package
|
(package
|
||||||
(name "go-gopkg-in-square-go-jose-v2")
|
(name "go-gopkg-in-square-go-jose-v2")
|
||||||
|
|
|
@ -12439,46 +12439,6 @@ programming language.")
|
||||||
programming language.")
|
programming language.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public go-github-com-xeipuuv-gojsonschema
|
|
||||||
(let ((commit "6b67b3fab74d992bd07f72550006ab2c6907c416")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-xeipuuv-gojsonschema")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/xeipuuv/gojsonschema")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1q937a6q7canlr3dllqdw0qwa6z2fpwn1w9kycavx8jmwh6q3f69"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/xeipuuv/gojsonschema"
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'disable-failing-tests
|
|
||||||
(lambda* (#:key import-path #:allow-other-keys)
|
|
||||||
(with-directory-excursion (string-append "src/" import-path)
|
|
||||||
(substitute* "schema_test.go"
|
|
||||||
(("\\{\"phase\": \"remote ref, " all)
|
|
||||||
(string-append "// " all))
|
|
||||||
(("\\{\"phase\": \"valid definition" all)
|
|
||||||
(string-append "// " all))
|
|
||||||
(("\\{\"phase\": \"invalid definition" all)
|
|
||||||
(string-append "// " all)))))))))
|
|
||||||
(propagated-inputs (list go-github-com-xeipuuv-gojsonreference
|
|
||||||
go-github-com-xeipuuv-gojsonpointer
|
|
||||||
go-github-com-stretchr-testify))
|
|
||||||
(home-page "https://github.com/xeipuuv/gojsonschema")
|
|
||||||
(synopsis "Implementation of JSON Schema for Go")
|
|
||||||
(description
|
|
||||||
"This package provides an implementation of JSON Schema for the Go
|
|
||||||
programming language, which supports draft-04, draft-06 and draft-07.")
|
|
||||||
(license license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public go-github-com-niemeyer-pretty
|
(define-public go-github-com-niemeyer-pretty
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-niemeyer-pretty")
|
(name "go-github-com-niemeyer-pretty")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue