summaryrefslogtreecommitdiff
path: root/gnu/packages/docker.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-22 16:22:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-30 17:11:26 +0000
commit18524e0c039f2f33fb46b25aecc16f272eac77bc (patch)
tree6a20ad5e562294a7255edd389f98877b9bdd8c28 /gnu/packages/docker.scm
parent4ef89c00cbff72a8993267168732f33d524cd01e (diff)
gnu: Add go-github-com-docker-go-events.
* gnu/packages/docker.scm (go-github-com-docker-go-events): New variable. Change-Id: I3e42b9d8ce53d55c23bb3a5f8685a9ff1f1d8c94 Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
Diffstat (limited to 'gnu/packages/docker.scm')
-rw-r--r--gnu/packages/docker.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm
index 86ec63919eb..b1a35eba47c 100644
--- a/gnu/packages/docker.scm
+++ b/gnu/packages/docker.scm
@@ -144,6 +144,34 @@ loading Compose files as specified by the
@url{https://github.com/compose-spec/compose-spec, Compose specification}.")
(license license:asl2.0)))
+(define-public go-github-com-docker-go-events
+ (package
+ (name "go-github-com-docker-go-events")
+ (version "0.0.0-20250808211157-605354379745")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/docker/go-events")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0q3ylzyl670m3an32nhb0l5bsc3f4d9b963x3pjwsc94brg9l5qp"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/docker/go-events"))
+ (propagated-inputs
+ (list go-github-com-sirupsen-logrus))
+ (home-page "https://github.com/docker/go-events")
+ (synopsis "Composable event distribution for Golang")
+ (description
+ "This package implements a composable event distribution library,
+originally created to implement the notifications in
+@url{https://github.com/distribution/distribution/blob/v3.0.0/docs/content/about/notifications.md,
+Docker Registry 2}.")
+ (license license:asl2.0)))
+
(define-public go-github-com-docker-go-metrics
(package
(name "go-github-com-docker-go-metrics")