guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 711cb7a4a32901ace65cac9c3ec1a58361914f10
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 12 18:42:06 2025 +0100
gnu: Add go-github-com-go-openapi-inflect.
* gnu/packages/golang-xyz.scm (go-github-com-go-openapi-inflect): New
variable.
Change-Id: I5117dea4ec4f8f4368e02094474710d073d9c875
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 00b404e1d7..5d2fe85487 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -7214,6 +7214,31 @@ standard log package.")
of building man pages.")
(license license:expat)))
+(define-public go-github-com-go-openapi-inflect
+ (package
+ (name "go-github-com-go-openapi-inflect")
+ (version "0.21.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/go-openapi/inflect")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0xmayn2qbl8dy7hk60xwwgkacpzv7ssm2s6xqn84kg4bnr6bbvhv"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/go-openapi/inflect"))
+ (home-page "https://github.com/go-openapi/inflect")
+ (synopsis "Pluralize words library for Golang")
+ (description
+ "This package provides a basic set of functions applying grammar rules to
+inflect English words, modify case style (Capitalize, camelCase, snake_case,
+etc.).")
+ (license license:expat)))
+
(define-public go-github-com-go-playground-locales
(package
(name "go-github-com-go-playground-locales")