3
5
Fork 0
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:
Leo Famulari 2019-03-13 16:16:53 -04:00
parent 4e9e74be07
commit 56f610f5c7
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -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)))