guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6659f3338bfd50ca41db4c07cc01b8b01aec5469
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Fri Jan 30 12:34:59 2026 -0300

    gnu: Add go-github-com-jinzhu-inflection.
    
    * gnu/packages/golang-xyz.scm (go-github-com-jinzhu-inflection): New 
variable.
    
    Change-Id: I5857eb62adcf931e1636e8a92d0496759449b8da
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 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 855e5759d6..3f2d8eb01f 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13080,6 +13080,30 @@ destinations: the console and a log file.")
 struct to another.")
     (license license:expat)))
 
+(define-public go-github-com-jinzhu-inflection
+  (package
+    (name "go-github-com-jinzhu-inflection")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/jinzhu/inflection";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "165i20d11s03771gi43skl66salxj36212r25fbs0cgr4qgfj7fy"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/jinzhu/inflection"))
+    (home-page "https://github.com/jinzhu/inflection";)
+    (synopsis "Inflection rules for English words in Golang")
+    (description
+     "This package provides a map between English nouns and their plurals
+and vice-versa (e.g. people is mapped to person).")
+    (license license:expat)))
+
 (define-public go-github-com-jinzhu-now
   (package
     (name "go-github-com-jinzhu-now")

Reply via email to