guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c2530569484b1d2ad1b030e15ea9f737ed24fdb9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 16:17:41 2025 +0100

    gnu: Add go-github-com-jeremija-gosubmit.
    
    * gnu/packages/golang-web.scm (go-github-com-jeremija-gosubmit): New 
variable.
    
    Change-Id: Ib56e516a626c6baf9a73409294d412223c412811
---
 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 75904740ef..cf761923dd 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -4733,6 +4733,34 @@ Call}.")
     (propagated-inputs
      (list go-golang-org-x-net))))
 
+(define-public go-github-com-jeremija-gosubmit
+  (package
+    (name "go-github-com-jeremija-gosubmit")
+    (version "0.2.8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jeremija/gosubmit";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1x3m4ydwvw9875s9yx9xs6dj11zn02qzk2xknpy0875xfc62ypa7"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/jeremija/gosubmit"))
+    (propagated-inputs
+     (list go-golang-org-x-net))
+    (home-page "https://github.com/jeremija/gosubmit";)
+    (synopsis "Go library for parsing and submitting HTML forms")
+    (description
+     "This package implements a functinality to help filling out plain html
+forms during testing.  Will automatically take the existing values from the
+form so there is no need to manually set things like csrf tokens.  Alerts
+about missing required fields, or when pattern validation does not match.")
+    (license license:expat)))
+
 (define-public go-github-com-jhillyerd-enmime
   (package
     (name "go-github-com-jhillyerd-enmime")

Reply via email to