guix-commits
[Top][All Lists]
Advanced

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

37/60: gnu: Add go-github-com-go-git-gcfg.


From: guix-commits
Subject: 37/60: gnu: Add go-github-com-go-git-gcfg.
Date: Sun, 9 Aug 2020 10:25:01 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit b3cd7c9bff94d35a41847f3a8660f7290b9f5318
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 11:01:59 2020 +0300

    gnu: Add go-github-com-go-git-gcfg.
    
    * gnu/packages/golang.scm (go-github-com-go-git-gcfg): 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 b991008..9d99aea 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5112,3 +5112,27 @@ structures and algorithms in Go.")
     (description "Package warnings implements error handling with non-fatal
 errors (warnings).")
     (license license:bsd-2)))
+
+(define-public go-github-com-go-git-gcfg
+  (package
+    (name "go-github-com-go-git-gcfg")
+    (version "1.5.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/go-git/gcfg";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1lb14z4j35pwz2b2rbykkpsq515spwbndb00gwn2xlrzn949xb83"))))
+    (arguments
+     `(#:import-path "github.com/go-git/gcfg"))
+    (native-inputs
+     `(("go-gopkg-in-warnings" ,go-gopkg-in-warnings)
+       ("go-github-com-pkg-errors" ,go-github-com-pkg-errors)))
+    (build-system go-build-system)
+    (home-page "https://github.com/go-git/gcfg/";)
+    (synopsis "Gcfg reads INI-style configuration files into Go structs")
+    (description "Gcfg reads INI-style configuration files into Go structs.")
+    (license license:bsd-3)))



reply via email to

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