gnu: go-github-com-jba-templatecheck: Move to golang-xyz.

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

Change-Id: I056aac123819b9a625b5d80e77097a037a52f004
This commit is contained in:
Sharlatan Hellseher 2025-01-06 19:31:23 +00:00
parent 8b83be5d04
commit 84166739db
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 29 additions and 28 deletions

View file

@ -7071,6 +7071,35 @@ (define-public go-github-com-jacobsa-timeutil
@end itemize")
(license license:asl2.0)))
(define-public go-github-com-jba-templatecheck
(package
(name "go-github-com-jba-templatecheck")
(version "0.7.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jba/templatecheck")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "03nlpfgjiiqqhf0df6vgvxi7kn58ykh0jhnrffpa32wv2w67ndxz"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.22
#:import-path "github.com/jba/templatecheck"))
(propagated-inputs
(list go-github-com-google-safehtml))
(home-page "https://github.com/jba/templatecheck")
(synopsis "Checks Go templates for problems")
(description
"Package templatecheck checks Go templates for problems. It can detect
many errors that are normally caught only during execution. Use templatecheck
in tests to find template errors early, and along template execution paths
that might only rarely be reached.")
(license license:expat)))
(define-public go-github-com-jbenet-go-context
(package
(name "go-github-com-jbenet-go-context")

View file

@ -3729,34 +3729,6 @@ (define-public go-github-com-olekukonko-ts
size of the terminal.")
(license license:expat))))
(define-public go-github-com-jba-templatecheck
(package
(name "go-github-com-jba-templatecheck")
(version "0.7.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jba/templatecheck")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"03nlpfgjiiqqhf0df6vgvxi7kn58ykh0jhnrffpa32wv2w67ndxz"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.22
#:import-path "github.com/jba/templatecheck"))
(propagated-inputs (list go-github-com-google-safehtml))
(home-page "https://github.com/jba/templatecheck")
(synopsis "Checks Go templates for problems")
(description
"Package templatecheck checks Go templates for problems. It can detect
many errors that are normally caught only during execution. Use templatecheck
in tests to find template errors early, and along template execution paths
that might only rarely be reached.")
(license license:expat)))
(define-public go-github-com-alcortesm-tgz
(let ((commit "9c5fe88206d7765837fed3732a42ef88fc51f1a1")
(revision "1"))