diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-12 12:06:00 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:41:52 +0000 |
commit | ece4daf5fd8b087f077a4a65e831f8df9ef11518 (patch) | |
tree | 466132a2be11ff2b9edeaef7671c003d7ccb8106 | |
parent | c149fc769c65fce67d46a6c77fdfd6e269824cb0 (diff) |
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
-rw-r--r-- | gnu/packages/golang-check.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 3d9a41df31..7c2b65fec9 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -1313,20 +1313,18 @@ real database connection.") (license license:expat))) (define-public go-golang-org-x-lint - (let ((commit "83fdc39ff7b56453e3793356bcff3070b9b96445") - (revision "0")) (package (name "go-golang-org-x-lint") - (version (git-version "0.0.0" revision commit)) + (version "0.0.0-20241112194109-818c5a804067") (source (origin (method git-fetch) (uri (git-reference (url "https://go.googlesource.com/lint") - (commit commit))) + (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) + (base32 "06ni2jpd3s5bzg2qrry58svakkg9k43gkgkrbk8f8x886qnhnimp")))) (build-system go-build-system) (arguments '(#:import-path "golang.org/x/lint" @@ -1338,7 +1336,7 @@ real database connection.") (description "This is a linter for Go source code. Unlike gofmt, it doesn't reformat the source code, it only prints out style mistakes.") - (license license:bsd-3)))) + (license license:bsd-3))) ;; XXX: Unmaintained since 2020, see ;; <https://github.com/go-check/check/issues/111>. |