guix-commits
[Top][All Lists]
Advanced

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

05/06: gnu: Add go-github-com-juju-ansiterm.


From: guix-commits
Subject: 05/06: gnu: Add go-github-com-juju-ansiterm.
Date: Sat, 8 Oct 2022 00:15:45 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 5002e1ac05a029e6a5643733bc4f24ff29f3e268
Author: Dhruvin Gandhi <contact@dhruvin.dev>
AuthorDate: Thu Jun 23 15:08:06 2022 +0530

    gnu: Add go-github-com-juju-ansiterm.
    
    * gnu/packages/golang.scm (go-github-com-juju-ansiterm): New variable.
    
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 466d571c26..53d1e38c28 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -7849,6 +7849,33 @@ file system operations.")
 extensions.")
       (license license:expat))))
 
+(define-public go-github-com-juju-ansiterm
+  (package
+    (name "go-github-com-juju-ansiterm")
+    (version "0.0.0-20210929141451-8b71cc96ebdc")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/juju/ansiterm";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "05mk7mlvg11dd6b0j0wlq547ghbmx2ywwrlbcb4kddpg7qaqp1va"))))
+    (build-system go-build-system)
+    (arguments (list #:import-path "github.com/juju/ansiterm"))
+    (propagated-inputs
+     (list go-gopkg-in-check-v1
+           go-github-com-mattn-go-isatty
+           go-github-com-mattn-go-colorable
+           go-github-com-lunixbochs-vtclean))
+    (home-page "https://github.com/juju/ansiterm";)
+    (synopsis "Writer to output ANSI escape codes for color and styles")
+    (description
+     "The ansiterm package provides a writer to output the ANSI escape codes
+for color and styles.")
+    (license license:lgpl3)))
+
 (define-public go-github-com-kevinburke-ssh-config
   (package
     (name "go-github-com-kevinburke-ssh-config")



reply via email to

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