diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-07 15:14:47 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:02 +0100 |
commit | 228827d06e3bb8849572c64aa81935f11defb4e4 (patch) | |
tree | 351e76a57fe330b8ca62ec66357de2b0357cbf6f /gnu/packages/golang-xyz.scm | |
parent | 0fc790cde30835228d46ae8cf0a8731e6b9a4255 (diff) |
gnu: Add go-github-com-apex-logs.
* gnu/packages/golang-xyz.scm (go-github-com-apex-logs): New variable.
Change-Id: Iab4732bec72498b40ebaef3526c2b8b199f6d6a2
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 411b9d8e1c..0ccf43f540 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1433,6 +1433,33 @@ commands.") "This package implements optimal parameters for data-types.") (license license:expat))) +(define-public go-github-com-apex-logs + (package + (name "go-github-com-apex-logs") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dm4bqwnjlb5xgpym3qwmn3gxr05p29fjd6i8vdbc34cj6lyc35h")))) + (build-system go-build-system) + (arguments + (list + ;; Network access is requried. + #:test-flags #~(list "-skip" "TestService_GetProjects|TestHTTP") + #:import-path "github.com/apex/logs")) + (native-inputs + (list go-github-com-tj-assert)) + (home-page "https://github.com/apex/logs") + (synopsis "Logs client for Golang") + ;; There is no much info in project's README. + (description "This package implements a log client.") + (license license:expat))) + (define-public go-github-com-apparentlymart-go-dump (package (name "go-github-com-apparentlymart-go-dump") |