gnu: Add go-github-com-kr-text.
* gnu/packages/golang.scm (go-github-com-kr-text): New variable.master
parent
4e9e74be07
commit
56f610f5c7
|
@ -3104,3 +3104,24 @@ have super fancy logs.")
|
||||||
(description "This package provides a library for parsing the dotenv
|
(description "This package provides a library for parsing the dotenv
|
||||||
format in Go.")
|
format in Go.")
|
||||||
(license license:expat))))
|
(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)))
|
||||||
|
|
Reference in New Issue