gnu: go-github-com-jacobsa-reqtrace: Move to golang-check.

* gnu/packages/golang.scm (go-github-com-jacobsa-reqtrace): Move from
here ...
* gnu/packages/golang-check.scm: ... to here.

Change-Id: If331f4aa071ee810b3f5e286def7e181f1971f3d
This commit is contained in:
Sharlatan Hellseher 2024-12-19 12:43:20 +00:00
parent ce306a9a09
commit 165053a024
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 25 additions and 24 deletions

View file

@ -796,6 +796,31 @@ signalling failures, it offers ways to express expectations and get nice failure
messages automatically.") messages automatically.")
(license license:asl2.0)))) (license license:asl2.0))))
(define-public go-github-com-jacobsa-reqtrace
(package
(name "go-github-com-jacobsa-reqtrace")
(version "0.0.0-20150505043853-245c9e0234cb")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jacobsa/reqtrace")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0zfyijig10896v42rvxka1n4wn6lijqz40y2281187l7mq8vv5jn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/jacobsa/reqtrace"))
(propagated-inputs
(list go-golang-org-x-net))
(home-page "https://github.com/jacobsa/reqtrace")
(synopsis "Simple request tracing framework")
(description
"Package reqtrace contains a very simple request tracing framework.")
(license license:asl2.0)))
(define-public go-github-com-jbenet-go-cienv (define-public go-github-com-jbenet-go-cienv
(package (package
(name "go-github-com-jbenet-go-cienv") (name "go-github-com-jbenet-go-cienv")

View file

@ -1260,30 +1260,6 @@ form that bypasses network filtering, allowing the application to work on
networks where it would otherwise be blocked or heavily throttled.") networks where it would otherwise be blocked or heavily throttled.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-jacobsa-reqtrace
(package
(name "go-github-com-jacobsa-reqtrace")
(version "0.0.0-20150505043853-245c9e0234cb")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jacobsa/reqtrace")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32
"0zfyijig10896v42rvxka1n4wn6lijqz40y2281187l7mq8vv5jn"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/jacobsa/reqtrace"))
(propagated-inputs
(list go-golang-org-x-net))
(home-page "https://github.com/jacobsa/reqtrace")
(synopsis "Simple request tracing framework")
(description
"Package reqtrace contains a very simple request tracing framework.")
(license license:asl2.0)))
(define-public go-github-com-kataras-golog (define-public go-github-com-kataras-golog
(package (package
(name "go-github-com-kataras-golog") (name "go-github-com-kataras-golog")