guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 96d6b17923b85d4b5d6e7bae17fe838d568166f6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 28 01:24:35 2025 +0100

    gnu: Add go-github-com-moby-locker.
    
    * gnu/packages/golang-xyz.scm (go-github-com-moby-locker): New variable.
    
    Change-Id: Ib2d043da3734e5e663ee05d5c761d6d779f9037f
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2a8cfabaaa..dd1a154a01 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14598,6 +14598,30 @@ parsing.")
      "This directory contains documents about Docker Image Specification 
v1.X.")
     (license license:asl2.0)))
 
+(define-public go-github-com-moby-locker
+  (package
+    (name "go-github-com-moby-locker")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/moby/locker";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/moby/locker"))
+    (home-page "https://github.com/moby/locker";)
+    (synopsis "Golang std @code{sync.Mutex} locker alternative")
+    (description
+     "Package locker provides a mechanism for creating finer-grained locking
+to help free up more global locks to handle other tasks.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-moby-spdystream
   (package
     (name "go-github-com-moby-spdystream")

Reply via email to