~ruther/guix-local

18524e0c039f2f33fb46b25aecc16f272eac77bc — Sharlatan Hellseher 5 months ago 4ef89c0
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>
1 files changed, 28 insertions(+), 0 deletions(-)

M gnu/packages/docker.scm
M gnu/packages/docker.scm => gnu/packages/docker.scm +28 -0
@@ 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")