[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: gnu: Add go-golang-org-x-text-encoding.
From: |
guix-commits |
Subject: |
01/10: gnu: Add go-golang-org-x-text-encoding. |
Date: |
Mon, 29 Jul 2019 10:59:01 -0400 (EDT) |
dannym pushed a commit to branch master
in repository guix.
commit 06c2d0e6c1f8c6d79daeb7991087b9eff388b28c
Author: Brian Leung <address@hidden>
Date: Tue Jun 25 20:42:49 2019 +0200
gnu: Add go-golang-org-x-text-encoding.
* gnu/packages/golang.scm (go-golang-org-x-text-encoding): New variable.
Signed-off-by: Danny Milosavljevic <address@hidden>
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 10c30e5..9b423d0 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -48,6 +48,7 @@
#:use-module (gnu packages pcre)
#:use-module (gnu packages lua)
#:use-module (gnu packages mp3)
+ #:use-module (gnu packages textutils)
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
@@ -1174,6 +1175,32 @@ for low-level interaction with the operating system.")
(description "Thi spackage provides @code{cpu}, which offers tools for CPU
feature detection in Go.")))
+(define-public go-golang-org-x-text-encoding
+ (package
+ (name "go-golang-org-x-text-encoding")
+ (version "0.3.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://go.googlesource.com/text")
+ (commit (string-append "v" version))))
+ (file-name (string-append "go.googlesource.com-text-"
+ version "-checkout"))
+ (sha256
+ (base32
+ "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "golang.org/x/text/encoding"
+ #:unpack-path "golang.org/x/text"))
+ (synopsis "Interface for character encodings for conversion to and from
+UTF-8")
+ (description "This package defines an interface for character encodings.
+Specific implementations of encoding for CJK text as well as simple character
+encodings are provided in subpackages.")
+ (home-page "https://go.googlesource.com/text")
+ (license license:bsd-3)))
+
(define-public go-golang-org-x-text-transform
(let ((commit "e19ae1496984b1c655b8044a65c0300a3c878dd3")
(revision "1"))
- branch master updated (767a0a1 -> cb3625b), guix-commits, 2019/07/29
- 01/10: gnu: Add go-golang-org-x-text-encoding.,
guix-commits <=
- 06/10: gnu: Add go-github-com-gdamore-encoding., guix-commits, 2019/07/29
- 08/10: gnu: Add go-github-com-gdamore-tcell., guix-commits, 2019/07/29
- 03/10: gnu: go-golang-org-x-text-unicode-norm: Inherit from related package., guix-commits, 2019/07/29
- 02/10: gnu: go-golang-org-x-text-transform: Inherit from related package., guix-commits, 2019/07/29
- 05/10: gnu: Add go-golang-org-colorful., guix-commits, 2019/07/29
- 10/10: gnu: Add go-github-com-junegunn-fzf., guix-commits, 2019/07/29
- 04/10: gnu: Add go-golang-org-sql-mock., guix-commits, 2019/07/29
- 07/10: gnu: go-github.com-mattn-go-runewidth: Update to 0.0.4-1.703b5e6., guix-commits, 2019/07/29
- 09/10: gnu: Add go-github-com-mattn-go-shellwords., guix-commits, 2019/07/29