gnu: Add go-github-com-jacobsa-reqtrace.

* gnu/packages/golang.scm (go-github-com-jacobsa-reqtrace): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Felix Lechner 2023-03-05 12:54:52 -08:00 committed by Leo Famulari
parent bcec46eee2
commit 48f8f9048d
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -1309,6 +1309,32 @@ (define-public go-github-com-jacobsa-ogletest
messages automatically.")
(license license:asl2.0))))
(define-public go-github-com-jacobsa-reqtrace
(let ((commit "245c9e0234cb2ad542483a336324e982f1a22934")
(revision "0"))
(package
(name "go-github-com-jacobsa-reqtrace")
(version (git-version "0.0.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jacobsa/reqtrace")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0zfyijig10896v42rvxka1n4wn6lijqz40y2281187l7mq8vv5jn"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/jacobsa/reqtrace"))
(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
(package
(name "go-github-com-kataras-golog")