1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: go-golang-org-x-lint: Update to 0.0.0-20241112194109-818c5a804067.

* gnu/packages/golang-check.scm (go-golang-org-x-lint): Update to 0.0.0-20241112194109-818c5a804067.

Change-Id: I397b4ad6e0483197165a23905128d128fd80d74c
This commit is contained in:
Sharlatan Hellseher 2024-12-12 12:06:00 +00:00
parent c149fc769c
commit ece4daf5fd
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1313,20 +1313,18 @@ real database connection.")
(license license:expat))) (license license:expat)))
(define-public go-golang-org-x-lint (define-public go-golang-org-x-lint
(let ((commit "83fdc39ff7b56453e3793356bcff3070b9b96445")
(revision "0"))
(package (package
(name "go-golang-org-x-lint") (name "go-golang-org-x-lint")
(version (git-version "0.0.0" revision commit)) (version "0.0.0-20241112194109-818c5a804067")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://go.googlesource.com/lint") (url "https://go.googlesource.com/lint")
(commit commit))) (commit (go-version->git-ref version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) (base32 "06ni2jpd3s5bzg2qrry58svakkg9k43gkgkrbk8f8x886qnhnimp"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
'(#:import-path "golang.org/x/lint" '(#:import-path "golang.org/x/lint"
@ -1338,7 +1336,7 @@ real database connection.")
(description (description
"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)))
;; XXX: Unmaintained since 2020, see ;; XXX: Unmaintained since 2020, see
;; <https://github.com/go-check/check/issues/111>. ;; <https://github.com/go-check/check/issues/111>.