guix-commits
[Top][All Lists]
Advanced

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

07/10: gnu: Add go-github-com-kisielk-gotool.


From: guix-commits
Subject: 07/10: gnu: Add go-github-com-kisielk-gotool.
Date: Sat, 20 Mar 2021 06:27:53 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit 81aa7cea643099c8fa0b458d1319e9f412177881
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Fri Mar 19 15:50:34 2021 +0100

    gnu: Add go-github-com-kisielk-gotool.
    
    * gnu/packages/golang.scm (go-github-com-kisielk-gotool): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 413c491..4c2fb2a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6944,3 +6944,27 @@ atomic access.")
        "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))))
+
+(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)))



reply via email to

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