~ruther/guix-local

576e6524cb84e44a1d9007ca4065b6d9ffed0731 — Sharlatan Hellseher 11 months ago b29e20f
gnu: Add go-github-com-cockroachdb-metamorphic.

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

Change-Id: Icdaa77234d606b8375785b461ea0b351fe2ffa93
1 files changed, 29 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +29 -0
@@ 1873,6 1873,35 @@ provides of error objects, in ways suitable for distributed systems with
mixed-version software compatibility.")
    (license license:asl2.0)))

(define-public go-github-com-cockroachdb-metamorphic
  (package
    (name "go-github-com-cockroachdb-metamorphic")
    (version "0.0.0-20231120015718-884f2746775a")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/cockroachdb/metamorphic")
             (commit (go-version->git-ref version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1cf5rwifmlvnrwq17izgc0297yjw4q2fl1qar9d1slm3wqd4h186"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/cockroachdb/metamorphic"))
    (native-inputs
     (list go-github-com-stretchr-testify))
    (propagated-inputs
     (list go-github-com-cockroachdb-errors))
    (home-page "https://github.com/cockroachdb/metamorphic")
    (synopsis "Metamorphic-style testing in Golang")
    (description
     "This Package provides facilities for running metamorphic, property-based
testing.  By running logically equivalent operations with different
conditions, metamorphic tests can identify bugs without requiring an oracle.")
    (license license:asl2.0)))

(define-public go-github-com-coder-websocket
  (package
    (name "go-github-com-coder-websocket")