guix-commits
[Top][All Lists]
Advanced

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

09/13: gnu: Add go-github-com-kr-text.


From: Pierre Neidhardt
Subject: 09/13: gnu: Add go-github-com-kr-text.
Date: Sun, 22 Jul 2018 16:55:23 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit bc3138d265dd31ca27b89b41d6c126fa8367547f
Author: Pierre Neidhardt <address@hidden>
Date:   Fri Jun 22 18:49:53 2018 +0200

    gnu: Add go-github-com-kr-text.
    
    * gnu/packages/golang.scm (go-github-com-kr-text): New variable.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 84aa2c8..0092c2a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2240,3 +2240,29 @@ User-defined types can be made available to Lua as well: 
their exported
 methods can be called and usual operations such as indexing or arithmetic can
 be performed.")
       (license license:expat))))
+
+(define-public go-github-com-kr-text
+  (let ((commit "e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f")
+        (revision "0"))
+    (package
+      (name "go-github-com-kr-text")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url
+                "https://github.com/kr/text";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "github.com/kr/text"))
+      (home-page "https://github.com/kr/text";)
+      (synopsis "Go package for manipulating paragraphs of text")
+      (description "Package @code{text} provides manipulation Go functions for
+paragraphs of text.")
+      (license license:expat))))



reply via email to

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