sharlatan pushed a commit to branch go-team
in repository guix.

commit 44de9df158b810c16be861f4753511b9a239e7d4
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Dec 13 15:16:44 2024 +0000

    gnu: Add go-github-com-containerd-log.
    
    * gnu/packages/golang-xyz.scm (go-github-com-containerd-log): New variable.
    
    Change-Id: I8adb2d0e13d2780493ee667f649c1a84d9626b15
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 27b30c5cf4..1d704fe46a 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2223,6 +2223,31 @@ cgroup uses the OCI runtime-spec found
 way.")
     (license license:asl2.0)))
 
+(define-public go-github-com-containerd-log
+  (package
+    (name "go-github-com-containerd-log")
+    (version "0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/containerd/log";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1nzviiqpn0djdwql2q3m2xs1ndxyd0v2klvq6xi2r0dn4wr3mqdy"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/containerd/log"))
+    (propagated-inputs (list go-github-com-sirupsen-logrus))
+    (home-page "https://github.com/containerd/log";)
+    (synopsis "Common log interface for containerd repositories and clients")
+    (description
+     "Package log provides types and functions related to logging, passing
+loggers through a context, and attaching context to the logger.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-coocood-freecache
   (package
     (name "go-github-com-coocood-freecache")

Reply via email to