gnu: Add go-github-com-kisielk-gotool.

* gnu/packages/golang.scm (go-github-com-kisielk-gotool): New variable.
This commit is contained in:
Guillaume Le Vaillant 2021-03-19 15:50:34 +01:00
parent 81976123b2
commit 81aa7cea64
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -6944,3 +6944,27 @@ atomic access.")
"This is a linter for Go source code. Unlike gofmt, it doesn't "This is a linter for Go source code. Unlike gofmt, it doesn't
reformat the source code, it only prints out style mistakes.") reformat the source code, it only prints out style mistakes.")
(license license:bsd-3)))) (license license:bsd-3))))
(define-public go-github-com-kisielk-gotool
(package
(name "go-github-com-kisielk-gotool")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kisielk/gotool")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/kisielk/gotool"))
(home-page "https://github.com/kisielk/gotool")
(synopsis "Go library of utility functions")
(description
"This package contains utility functions used to implement the standard
@code{cmd/go} tool, provided as a convenience to developers who want to write
tools with similar semantics.")
(license license:expat)))