guix-commits
[Top][All Lists]
Advanced

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

09/60: gnu: Add go-github-com-bmatcuk-doublestar.


From: guix-commits
Subject: 09/60: gnu: Add go-github-com-bmatcuk-doublestar.
Date: Sun, 9 Aug 2020 10:24:52 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit bdb5a10880faeb2802108d762b4044c440df98c4
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sat Aug 8 23:16:04 2020 +0300

    gnu: Add go-github-com-bmatcuk-doublestar.
    
    * gnu/packages/golang.scm (go-github-com-bmatcuk-doublestar): 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 4711ce9..da5d584 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4474,3 +4474,25 @@ maps (because they are not addressable using Go 
reflection).")
     (description "Sprig is a library that provides more than 100 commonly used
 template functions.")
     (license license:expat)))
+
+(define-public go-github-com-bmatcuk-doublestar
+  (package
+    (name "go-github-com-bmatcuk-doublestar")
+    (version "1.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/bmatcuk/doublestar";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0bk5bixl6rqa8znxghyp6zndbccx9kdyrymjahgyp6qsrp7rk144"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/bmatcuk/doublestar"))
+    (home-page "https://github.com/bmatcuk/doublestar/";)
+    (synopsis "Path pattern matching and globbing supporting doublestar")
+    (description "@code{doublestar} is a Go implementation of path pattern
+matching and globbing with support for \"doublestar\" patterns.")
+    (license license:expat)))



reply via email to

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