guix-commits
[Top][All Lists]
Advanced

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

10/27: gnu: Add go-github-com-maruel-panicparse.


From: guix-commits
Subject: 10/27: gnu: Add go-github-com-maruel-panicparse.
Date: Mon, 29 Jul 2019 14:57:19 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit d0ced446d06de2ab58f526f108d4c23de47a4956
Author: Leo Famulari <address@hidden>
Date:   Wed Jul 17 13:33:42 2019 -0400

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

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 821b55d..02a7fd1 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3610,3 +3610,26 @@ network protocol.")
 error handling primitives in Go.")
       (home-page "https://github.com/pkg/errors";)
       (license license:bsd-2))))
+
+(define-public go-github-com-maruel-panicparse
+  (package
+    (name "go-github-com-maruel-panicparse")
+    (version "1.2.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/maruel/panicparse";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "05hf68ifb7ww4rpmxyywbj9r0kyap45p1273ncq4qy2ydv042l8j"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/maruel/panicparse"))
+    (synopsis "Toolkit for parsing Go stack traces")
+    (description "This package provides a toolkit for parsing Go language panic
+stack traces.  It simplifies the traces to make salient information more 
visible
+and aid debugging.")
+    (home-page "https://github.com/maruel/panicparse";)
+    (license license:asl2.0)))



reply via email to

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