diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-19 12:43:20 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:07 +0000 |
commit | 165053a02450c31b763b0e614bc65b101b634031 (patch) | |
tree | 41d8f2b069354c632c0da490295cea6fbd11e67b | |
parent | ce306a9a09b03c521855ecc8f1e73009aa3013b1 (diff) |
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
-rw-r--r-- | gnu/packages/golang-check.scm | 25 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 24 |
2 files changed, 25 insertions, 24 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 161740b8e8..57614c0a18 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -796,6 +796,31 @@ 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 + (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 (package (name "go-github-com-jbenet-go-cienv") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index a8fc659398..06489d816a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -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.") (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 (package (name "go-github-com-kataras-golog") |