guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: Add go-github-com-vmihailenco-tagparser.


From: guix-commits
Subject: 01/06: gnu: Add go-github-com-vmihailenco-tagparser.
Date: Fri, 28 Jan 2022 04:37:45 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit cd355a8dafb0ccb748ab48604ac3890ba1931e1e
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Fri Jan 28 10:28:59 2022 +0100

    gnu: Add go-github-com-vmihailenco-tagparser.
    
    * gnu/packages/golang.scm (go-github-com-vmihailenco-tagparser): New 
variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/golang.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index e808d8ebf6..2990db5ea2 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8756,6 +8756,28 @@ non-cryptographic hash algorithm, working at speeds 
close to RAM limits.")
      "Provides a platform-independent way to get atime, mtime, ctime and btime 
for files.")
     (license license:expat)))
 
+(define-public go-github-com-vmihailenco-tagparser
+  (package
+    (name "go-github-com-vmihailenco-tagparser")
+    (version "2.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/vmihailenco/tagparser";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "13arliaz3b4bja9jj7cr5ax4zvxaxm484fwrn0q6d6jjm1l35m1k"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/vmihailenco/tagparser"))
+    (home-page "https://github.com/vmihailenco/tagparser";)
+    (synopsis "Tag parser for Golang")
+    (description "This package is a simple Golang implementation of tag
+parser.")
+    (license license:bsd-2)))
+
 (define-public go-github-com-vividcortex-ewma
   (package
     (name "go-github-com-vividcortex-ewma")



reply via email to

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