mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add go-github-com-kr-text.
* gnu/packages/golang.scm (go-github-com-kr-text): New variable.
This commit is contained in:
parent
4e9e74be07
commit
56f610f5c7
1 changed files with 21 additions and 0 deletions
|
@ -3104,3 +3104,24 @@ have super fancy logs.")
|
|||
(description "This package provides a library for parsing the dotenv
|
||||
format in Go.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-kr-text
|
||||
(package
|
||||
(name "go-github-com-kr-text")
|
||||
(version "0.1.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/kr/text.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/kr/text"))
|
||||
(synopsis "Text formatting in Go")
|
||||
(description "This package provides a text formatting functions in Go.")
|
||||
(home-page "https://github.com/kr/text")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue