guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/10: gnu: Add go-golang-org-x-lint.


From: guix-commits
Subject: 06/10: gnu: Add go-golang-org-x-lint.
Date: Sat, 20 Mar 2021 06:27:53 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit 81976123b2da8609efff9b5dec4baf86bdd0b8fd
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Fri Mar 19 15:45:34 2021 +0100

    gnu: Add go-golang-org-x-lint.
    
    * gnu/packages/golang.scm (go-golang-org-x-lint): New variable.
---
 gnu/packages/golang.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index a3f3367..413c491 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6916,3 +6916,31 @@ atomic access.")
     (description
      "@code{multierr} allows combining one or more Go errors together.")
     (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))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://go.googlesource.com/lint";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "golang.org/x/lint"
+         #:tests? #f)) ;; TODO: Fix tests
+      (propagated-inputs
+       `(("go-golang-org-x-tools" ,go-golang-org-x-tools)))
+      (home-page "https://golang.org/x/lint";)
+      (synopsis "Linter for Go source code")
+      (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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]