guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ba62c285a3abe337064c20e421a0565a5313db6d
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Tue May 19 23:19:42 2026 +0000
gnu: Add go-github-com-gobuffalo-flect.
* gnu/packages/golang-xyz.scm (go-github-com-gobuffalo-flect): New variable.
Change-Id: I80a9882d9441e758fd9793c08a27965b88935ddc
Relates-to: guix/guix!5417
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index bc01639b61..5df677b725 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -11726,6 +11726,33 @@ native Go structure.")
(description "Package yaml implements YAML support for the Go language.")
(license license:asl2.0)))
+(define-public go-github-com-gobuffalo-flect
+ (package
+ (name "go-github-com-gobuffalo-flect")
+ (version "1.0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gobuffalo/flect")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0lyb1876byv9q52y6dlq17aahwl108mhp67cmxykckjpxxykb442"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/gobuffalo/flect"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (home-page "https://github.com/gobuffalo/flect")
+ (synopsis "Inflection engine for Golang")
+ (description
+ "This package provides a new inflection engine to replace
+@url{https://github.com/markbates/inflect,} designed to be more modular,
+readable, and easier to fix issues on than the original.")
+ (license license:expat)))
+
(define-public go-github-com-gobwas-glob
(package
(name "go-github-com-gobwas-glob")