guix-commits
[Top][All Lists]
Advanced

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

01/60: gnu: Add go-github-com-masterminds-goutils.


From: guix-commits
Subject: 01/60: gnu: Add go-github-com-masterminds-goutils.
Date: Sun, 9 Aug 2020 10:24:50 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 38713d5a8f30847af32bde8d76f454d0408e77f9
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sat Aug 8 22:30:54 2020 +0300

    gnu: Add go-github-com-masterminds-goutils.
    
    * gnu/packages/golang.scm (go-github-com-masterminds-goutils): 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 51fd284..c48867e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4263,3 +4263,27 @@ used by other processes.")
 Porter2 stemmer}.  It is written completely using finite state machines to do
 suffix comparison, rather than the string-based or tree-based approaches.")
       (license license:asl2.0))))
+
+(define-public go-github-com-masterminds-goutils
+  (package
+    (name "go-github-com-masterminds-goutils")
+    (version "1.1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/Masterminds/goutils";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "180px47gj936qyk5bkv5mbbgiil9abdjq6kwkf7sq70vyi9mcfiq"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/Masterminds/goutils"))
+    (home-page "https://github.com/Masterminds/goutils/";)
+    (synopsis "Utility functions to manipulate strings")
+    (description "GoUtils provides utility functions to manipulate strings in
+various ways.  It is a Go implementation of some string manipulation libraries
+of Java Apache Commons.")
+    (license license:asl2.0)))
+    (license license:expat)))



reply via email to

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