unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Joseph LaFreniere <joseph@lafreniere.xyz>
To: 44562@debbugs.gnu.org
Subject: [bug#44562] [PATCH 10/15] gnu: Add go-github-com-daviddengcn-go-colortext.
Date: Tue, 10 Nov 2020 16:50:40 -0600	[thread overview]
Message-ID: <87d00k967z.fsf@lafreniere.xyz> (raw)
In-Reply-To: <87361galdn.fsf@lafreniere.xyz>

[-- Attachment #1: Type: text/plain, Size: 22 bytes --]


--
Joseph LaFreniere

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0010-gnu-Add-go-github-com-daviddengcn-go-colortext.patch --]
[-- Type: text/x-patch, Size: 2027 bytes --]

From e37a23dae6340f162d474dde9b929b25d53f518f Mon Sep 17 00:00:00 2001
From: Joseph LaFreniere <joseph@lafreniere.xyz>
Date: Sun, 8 Nov 2020 21:36:52 -0600
Subject: [PATCH 10/15] gnu: Add go-github-com-daviddengcn-go-colortext.

* gnu/packages/golang.scm (go-github-com-daviddengcn-go-colortext): New variable.
---
 gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index aa4edc85ec..b903077ed4 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -500,6 +500,33 @@ jar struct to manage the cookies added to the cookie jar.")
     (description "This package provides additions to Go's stdlib @code{fmt}.")
     (license license:bsd-3)))
 
+(define-public go-github-com-daviddengcn-go-colortext
+  (package
+    (name "go-github-com-daviddengcn-go-colortext")
+    (version "1.0.0")
+    (home-page "https://github.com/daviddengcn/go-colortext")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url home-page)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 "0j5ldwg3a768d3nniiglghr9axj4p87k7f7asqxa1a688xvcms48"))))
+    (build-system go-build-system)
+    (native-inputs
+     `(("go-github-com-golangplus-testing" ,go-github-com-golangplus-testing)))
+    (arguments
+     '(#:import-path "github.com/daviddengcn/go-colortext"))
+    (synopsis "Change the color of console text and background")
+    (description
+     "This is a package to change the color of the text and background in the
+console, working both under Windows and other systems.
+
+Under Windows, the console APIs are used. Otherwise, ANSI texts are output.")
+    ;; dual-licensed
+    (license (list license:bsd-3 license:expat))))
+
 (define-public go-github-com-golangplus-testing
   (package
     (name "go-github-com-golangplus-testing")
-- 
2.29.2


  parent reply	other threads:[~2020-11-10 22:51 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-10 22:37 [bug#44562] [PATCH 01/15] gnu: Add go-github-com-leodido-go-urn Joseph LaFreniere
2020-11-10 22:45 ` [bug#44562] [PATCH 02/15] gnu: Add go-github-com-go-playground-locales Joseph LaFreniere
2020-11-10 22:46 ` [bug#44562] [PATCH 03/15] gnu: Add go-github-com-go-playground-universal-translator Joseph LaFreniere
2020-11-10 22:47 ` [bug#44562] [PATCH 04/15] gnu: Add go-gopkg-in-go-playground-assert-v1 Joseph LaFreniere
2020-11-10 22:47 ` [bug#44562] [PATCH 05/15] gnu: Add go-gopkg-in-go-playground-validator-v9 Joseph LaFreniere
2020-11-10 22:48 ` [bug#44562] [PATCH 06/15] gnu: Add go-github-com-goccy-yaml Joseph LaFreniere
2020-11-10 22:49 ` [bug#44562] [PATCH 07/15] gnu: Add go-github-com-Songmu-gitconfig Joseph LaFreniere
2020-11-10 22:49 ` [bug#44562] [PATCH 08/15] gnu: Add go-github-com-golangplus-fmt Joseph LaFreniere
2020-11-10 22:50 ` [bug#44562] [PATCH 09/15] gnu: Add go-github-com-golangplus-testing Joseph LaFreniere
2020-11-10 22:50 ` Joseph LaFreniere [this message]
2020-11-10 22:52 ` [bug#44562] [PATCH 11/15] gnu: Add go-github-com-motemen-go-colorine Joseph LaFreniere
2020-11-10 22:53 ` [bug#44562] [PATCH 12/15] gnu: Add go-golang.org-x-net-html Joseph LaFreniere
2020-11-10 22:53 ` [bug#44562] [PATCH 13/15] gnu: Add go-github-com-urfave-cli-v2 Joseph LaFreniere
2020-11-10 22:54 ` [bug#44562] [PATCH 14/15] gnu: Add go-github-com-x-motemen-ghq Joseph LaFreniere
2020-11-10 22:54 ` [bug#44562] [PATCH 15/15] gnu: Add ghq Joseph LaFreniere
2021-01-03 15:24   ` bug#44562: " Efraim Flashner
2021-01-03 15:23 ` [bug#44562] [PATCH 01/15] gnu: Add go-github-com-leodido-go-urn Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d00k967z.fsf@lafreniere.xyz \
    --to=joseph@lafreniere.xyz \
    --cc=44562@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).