1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: go-github-com-kr-text: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-kr-text): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I94afda2f75abbd56da2a2c60ffca2b243eb64dbe
This commit is contained in:
Sharlatan Hellseher 2024-12-21 23:22:29 +00:00
parent a00d0551fd
commit ec8920c8e5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 22 deletions

View file

@ -6269,6 +6269,30 @@ allocation. @code{fastime} is returning the approximate time.")
"This package provides a pretty printer for Go values.")
(license license:expat)))
(define-public go-github-com-kr-text
(package
(name "go-github-com-kr-text")
(version "0.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kr/text")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/kr/text"))
(propagated-inputs
(list go-github-com-creack-pty))
(home-page "https://github.com/kr/text")
(synopsis "Text formatting in Go")
(description "This package provides a text formatting functions in Go.")
(license license:expat)))
(define-public go-github-com-kylelemons-godebug
(package
(name "go-github-com-kylelemons-godebug")

View file

@ -4114,28 +4114,6 @@ anchor names.")
have super fancy logs.")
(license license:expat))))
(define-public go-github-com-kr-text
(package
(name "go-github-com-kr-text")
(version "0.2.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kr/text")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/kr/text"))
(propagated-inputs (list go-github-com-creack-pty))
(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)))
(define-public go-github-com-lucasb-eyer-go-colorful
(package
(name "go-github-com-lucasb-eyer-go-colorful")