diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-12 18:42:06 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-26 19:55:47 +0200 |
commit | 8e7f30c331768b2d81e87a41e442c523bf480ae7 (patch) | |
tree | 889b20b1f53809fb1695993364ffec95edf7c086 | |
parent | 3f2254383ef24e15356fff946eb4b2f256868aaa (diff) |
gnu: Add go-github-com-go-openapi-inflect.
* gnu/packages/golang-xyz.scm (go-github-com-go-openapi-inflect): New variable.
Change-Id: I5117dea4ec4f8f4368e02094474710d073d9c875
-rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 1756eb9acd..23404b6478 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -7619,6 +7619,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") |