diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-08-08 22:30:54 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-08-09 17:19:17 +0300 |
commit | 38713d5a8f30847af32bde8d76f454d0408e77f9 (patch) | |
tree | 15b169536ce370a0cc5a9e5f83f25316f20f0811 /gnu/packages | |
parent | e8f04331702ceacdc7484aea1b6f0e889762dfa2 (diff) |
gnu: Add go-github-com-masterminds-goutils.
* gnu/packages/golang.scm (go-github-com-masterminds-goutils): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 51fd2841ad..c48867ed47 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4263,3 +4263,27 @@ used by other processes.") Porter2 stemmer}. It is written completely using finite state machines to do suffix comparison, rather than the string-based or tree-based approaches.") (license license:asl2.0)))) + +(define-public go-github-com-masterminds-goutils + (package + (name "go-github-com-masterminds-goutils") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Masterminds/goutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "180px47gj936qyk5bkv5mbbgiil9abdjq6kwkf7sq70vyi9mcfiq")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/Masterminds/goutils")) + (home-page "https://github.com/Masterminds/goutils/") + (synopsis "Utility functions to manipulate strings") + (description "GoUtils provides utility functions to manipulate strings in +various ways. It is a Go implementation of some string manipulation libraries +of Java Apache Commons.") + (license license:asl2.0))) + (license license:expat))) |