mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-honnef-co-go-tools: Move to (gnu packages golang-check).
* gnu/packages/golang-check.scm (go-honnef-co-go-tools): Move from here... * gnu/packages/golang.scm: ... to here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
cf9c76223f
commit
4e65fb5b33
2 changed files with 36 additions and 31 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||||
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||||
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2022 ( <paren@disroot.org>
|
;;; Copyright © 2022 ( <paren@disroot.org>
|
||||||
|
@ -45,6 +46,41 @@
|
||||||
;;;
|
;;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
(define-public go-honnef-co-go-tools
|
||||||
|
(package
|
||||||
|
(name "go-honnef-co-go-tools")
|
||||||
|
(version "0.3.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/dominikh/go-tools")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"099z04v7vvwwglnps315s9fmal68xvzlc1g8m26iqi980grbwn32"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "honnef.co/go/tools"
|
||||||
|
#:tests? #f
|
||||||
|
;; Source-only package
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(delete 'build))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-burntsushi-toml
|
||||||
|
go-github-com-kisielk-gotool
|
||||||
|
go-golang-org-x-exp
|
||||||
|
go-golang-org-x-mod
|
||||||
|
go-golang-org-x-tools))
|
||||||
|
(home-page "https://honnef.co/go/tools")
|
||||||
|
(synopsis "Staticcheck advanced Go linter")
|
||||||
|
(description
|
||||||
|
"Staticcheck is a state of the art linter for the Go programming language.
|
||||||
|
Using static analysis, it finds bugs and performance issues, offers
|
||||||
|
simplifications, and enforces style rules.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-cheekybits-is
|
(define-public go-github-com-cheekybits-is
|
||||||
(let ((commit "68e9c0620927fb5427fda3708222d0edee89eae9")
|
(let ((commit "68e9c0620927fb5427fda3708222d0edee89eae9")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
|
@ -11529,37 +11529,6 @@ reformat the source code, it only prints out style mistakes.")
|
||||||
tools with similar semantics.")
|
tools with similar semantics.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-honnef-co-go-tools
|
|
||||||
(package
|
|
||||||
(name "go-honnef-co-go-tools")
|
|
||||||
(version "0.3.3")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/dominikh/go-tools")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"099z04v7vvwwglnps315s9fmal68xvzlc1g8m26iqi980grbwn32"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "honnef.co/go/tools"
|
|
||||||
#:tests? #f
|
|
||||||
;; Source-only package
|
|
||||||
#:phases (modify-phases %standard-phases
|
|
||||||
(delete 'build))))
|
|
||||||
(propagated-inputs (list go-golang-org-x-exp go-golang-org-x-tools
|
|
||||||
go-golang-org-x-mod go-github-com-kisielk-gotool
|
|
||||||
go-github-com-burntsushi-toml))
|
|
||||||
(home-page "https://honnef.co/go/tools")
|
|
||||||
(synopsis "Staticcheck advanced Go linter")
|
|
||||||
(description
|
|
||||||
"Staticcheck is a state of the art linter for the Go programming language.
|
|
||||||
Using static analysis, it finds bugs and performance issues, offers
|
|
||||||
simplifications, and enforces style rules.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-go-uber-org-zap
|
(define-public go-go-uber-org-zap
|
||||||
(package
|
(package
|
||||||
(name "go-go-uber-org-zap")
|
(name "go-go-uber-org-zap")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue