diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-11 13:42:16 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:57 +0000 |
commit | 04dc2c0ae014f9aa26724bc9174f76bd5b2abe8f (patch) | |
tree | 4f36b05fb8416f4cf9ef2c03bfb05a5f56825d9a /gnu/packages/golang-xyz.scm | |
parent | b3887f71bba1922a121fe9f814024a108128a406 (diff) |
gnu: go-github-com-gedex-inflector: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-gedex-inflector): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I16eb15cc6f3b53997cf387df0991979dc941580d
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 58a11e854c..2ab5fc1750 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -5224,6 +5224,29 @@ also favors portability, and includes support for all POSIX systems.") (modify-inputs (package-inputs go-github-com-gdamore-tcell) (prepend go-golang-org-x-term go-golang-org-x-sys)))))) +(define-public go-github-com-gedex-inflector + (package + (name "go-github-com-gedex-inflector") + (version "0.0.0-20170307190818-16278e9db813") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gedex/inflector") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hjqw1m71vww4914d9h6nqa9jw3lgjzwsy7qaffl02s2lh1amks")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/gedex/inflector")) + (home-page "https://github.com/gedex/inflector") + (synopsis "Go library that pluralizes and singularizes English nouns") + (description + "Go library that pluralizes and singularizes English nouns.") + (license license:bsd-2))) + (define-public go-github-com-git-lfs-go-netrc (package (name "go-github-com-git-lfs-go-netrc") |