diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-10 22:17:55 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:41:52 +0000 |
commit | 19e4de2e1ba086ca54fbb599edd3bb8ecce910d1 (patch) | |
tree | 9d2835de2b3f594a8d12af7017228fea7ba3286f /gnu/packages/golang-xyz.scm | |
parent | b7997a58d789159cbb11a59c6737a730144acf82 (diff) |
gnu: Add go-github-com-iancoleman-strcase.
* gnu/packages/golang-xyz.scm (go-github-com-iancoleman-strcase): New variable.
Change-Id: I9795c3941c4dc7a693baefeaa1c400a296847ef5
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 66bf24194d..571392e7dc 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -4564,6 +4564,29 @@ the C++ ABI defined at https://codesourcery.com/cxx-abi/ and the ABI}.") (license license:bsd-3))) +(define-public go-github-com-iancoleman-strcase + (package + (name "go-github-com-iancoleman-strcase") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/iancoleman/strcase") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "169fb56kiif2gq92b7hvh9xgl2n8kjmdg4gqaa1492kb97ia8lwm")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/iancoleman/strcase")) + (home-page "https://github.com/iancoleman/strcase") + (synopsis "Converting to snake_case or CamelCase") + (description + "Package strcase converts strings to various cases.") + (license license:expat))) + (define-public go-github-com-itchyny-timefmt-go (package (name "go-github-com-itchyny-timefmt-go") |