guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add go-github-com-mattn-go-zglob.


From: guix-commits
Subject: 03/04: gnu: Add go-github-com-mattn-go-zglob.
Date: Thu, 12 Mar 2020 22:13:24 -0400 (EDT)

ajgrf pushed a commit to branch master
in repository guix.

commit 42c6503d3777cf1b1c3749efe847dc8025a34b94
Author: Alex Griffin <address@hidden>
AuthorDate: Fri Jan 10 13:36:57 2020 -0600

    gnu: Add go-github-com-mattn-go-zglob.
    
    * gnu/packages/golang.scm (go-github-com-mattn-go-zglob): 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 470013b..0d92139 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3374,3 +3374,25 @@ test results.")
 data serialization format.")
     (home-page "https://github.com/golang/protobuf";)
     (license license:bsd-3)))
+
+(define-public go-github-com-mattn-go-zglob
+  (package
+    (name "go-github-com-mattn-go-zglob")
+    (version "0.0.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/mattn/go-zglob.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1sncdyq5fbd42al4amyy91h7vlzm3wm6c9vl8za2pjgfgsd581fz"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/mattn/go-zglob"))
+    (home-page "https://github.com/mattn/go-zglob";)
+    (synopsis "Glob library that descends into other directories")
+    (description " A glob library that implements descending into other
+directories.  It is optimized for filewalking. ")
+    (license license:expat)))



reply via email to

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