guix-commits
[Top][All Lists]
Advanced

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

36/60: gnu: Add go-gopkg-in-warnings.


From: guix-commits
Subject: 36/60: gnu: Add go-gopkg-in-warnings.
Date: Sun, 9 Aug 2020 10:25:00 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit f18df4f9dea09575b5d40ed6d1461dfface4b7c4
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 10:58:40 2020 +0300

    gnu: Add go-gopkg-in-warnings.
    
    * gnu/packages/golang.scm (go-gopkg-in-warnings): New variable.
---
 gnu/packages/golang.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index e5d646e..b991008 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5090,3 +5090,25 @@ structures and algorithms in Go.")
     (arguments
      `(#:import-path "github.com/emirpasic/gods/utils"
        #:unpack-path "github.com/emirpasic/gods"))))
+
+(define-public go-gopkg-in-warnings
+  (package
+    (name "go-gopkg-in-warnings")
+    (version "0.1.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/go-warnings/warnings";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "gopkg.in/warnings.v0"))
+    (home-page "https://gopkg.in/warnings.v0";)
+    (synopsis "Error handling with non-fatal errors")
+    (description "Package warnings implements error handling with non-fatal
+errors (warnings).")
+    (license license:bsd-2)))



reply via email to

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