guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 0ec7531e0f15c5a68e1bf83dd533c0d3c86ef7c8 Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 00f3034391..a48243f47d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -6873,6 +6873,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")