gnu: Add go-github-com-masterminds-goutils.

* gnu/packages/golang.scm (go-github-com-masterminds-goutils): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-08 22:30:54 +03:00
parent e8f0433170
commit 38713d5a8f
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -4263,3 +4263,27 @@ (define-public go-github-com-surgebase-porter2
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)))