guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e77fee13bb817d10926abf1da6eb9498fe2439bc
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 19:21:07 2025 +0100

    gnu: Add go-github-com-paesslerag-jsonpath.
    
    * gnu/packages/golang-xyz.scm (go-github-com-paesslerag-jsonpath): New 
variable.
    
    Change-Id: I29a482ab11c98befd1fd29688fb6d5920283694a
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index c9c27d0a97..78a5d35b64 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -19056,6 +19056,33 @@ function calls, and custom operators.  It's useful for 
configuration files,
 user-defined rules, and data filtering.")
     (license license:bsd-3)))
 
+(define-public go-github-com-paesslerag-jsonpath
+  (package
+    (name "go-github-com-paesslerag-jsonpath")
+    (version "0.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/PaesslerAG/jsonpath";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "19x98ilxgklhy70x3y5fmqn5kdymwssnwxv0gjyfcf2zwnzm89c4"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/PaesslerAG/jsonpath"))
+    (propagated-inputs
+     (list go-github-com-paesslerag-gval))
+    (home-page "https://github.com/PaesslerAG/jsonpath";)
+    (synopsis "JSONPath implementation for Go")
+    (description
+     "This package provides a JSONPath implementation for Go using the gval
+expression evaluation library.  It allows querying JSON documents using
+JSONPath expressions like @samp{$.store.book[*].author}.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-panjf2000-ants-v2
   (package
     (name "go-github-com-panjf2000-ants-v2")

Reply via email to