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

commit 65d25a891b98e113d058f0732196e6dd742c2ada
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Tue Jun 10 19:20:32 2025 +0100

    gnu: Add go-github-com-evanphx-json-patch-v5.
    
    * gnu/packages/golang-web.scm (go-github-com-evanphx-json-patch-v5): New 
variable.
    
    Change-Id: Iaac43b7dc49d353471b6f0c2e56eef9328403055
---
 gnu/packages/golang-web.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index f5d794a791..e815c522c1 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -2696,6 +2696,27 @@ documents, as well as for calculating & applying
 @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.")
     (license license:bsd-3)))
 
+(define-public go-github-com-evanphx-json-patch-v5
+  (package
+    (inherit go-github-com-evanphx-json-patch)
+    (name "go-github-com-evanphx-json-patch-v5")
+    (version "5.9.11")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/evanphx/json-patch";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0sydllg5hsmvwdr1276qzl8v3xsr3jjrimvvgl9096rn3kf3664m"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:go go-1.23
+      #:import-path "github.com/evanphx/json-patch/v5"
+      #:unpack-path "github.com/evanphx/json-patch"))))
+
 (define-public go-github-com-fasthttp-router
   (package
     (name "go-github-com-fasthttp-router")

Reply via email to