diff options
author | Felix Lechner <felix.lechner@lease-up.com> | 2023-03-05 12:54:52 -0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2023-03-28 16:26:09 -0400 |
commit | 48f8f9048d6fb0058368923d407c216a2c0513ed (patch) | |
tree | 98e74dd7c02cbc82906fe61dbed5b906b29e6f5c /gnu/packages/golang.scm | |
parent | bcec46eee260efe9bc6d41c30c4480ab82296158 (diff) | |
download | guix-48f8f9048d6fb0058368923d407c216a2c0513ed.tar guix-48f8f9048d6fb0058368923d407c216a2c0513ed.tar.gz |
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>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index fdde6f7cae..8bab117224 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1309,6 +1309,32 @@ signalling failures, it offers ways to express expectations and get nice failure 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") |