gnu: Add go-github-com-go-openapi-inflect.

* gnu/packages/golang-xyz.scm (go-github-com-go-openapi-inflect): New variable.

Change-Id: I5117dea4ec4f8f4368e02094474710d073d9c875
This commit is contained in:
Sharlatan Hellseher 2025-06-12 18:42:06 +01:00
parent 8723c49d8f
commit 606e52ceaf
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7677,6 +7677,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")