guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: Add go-github-com-containerd-console.


From: guix-commits
Subject: 03/07: gnu: Add go-github-com-containerd-console.
Date: Wed, 12 Jan 2022 16:55:56 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit ccd6bef63a0458581ee6b5cd8808fc21349bf71c
Author: Guix Together <jgart@dismail.de>
AuthorDate: Sat Dec 18 15:27:51 2021 -0500

    gnu: Add go-github-com-containerd-console.
    
    * gnu/packages/golang.scm (go-github-com-containerd-console): New variable.
    
    Co-authored-by: jgart <jgart@dismail.de>
    Co-authored-by: Gábor Boskovits <boskovits@gmail.com>
    Co-authored-by: Jorge Acereda <jacereda@gmail.com>
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 2ef17616e9..d92f4242c9 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8884,6 +8884,32 @@ well-suited for simple and complex terminal 
applications, either inline,
 full-window, or a mix of both.")
     (license license:asl2.0)))
 
+(define-public go-github-com-containerd-console
+  (package
+    (name "go-github-com-containerd-console")
+    (version "1.0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/containerd/console";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0pgx0y8x23jwc2f9jfk5hd5aslqk599nj6c7dj5846xvnkz2x7p2"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/containerd/console"))
+    (propagated-inputs
+     `(("golang.org/x/sys" ,go-golang-org-x-sys)))
+    (home-page "https://github.com/containerd/console";)
+    (synopsis "Console package for Go")
+    (description
+     "This is Golang package for dealing with consoles.  It has few
+dependencies and a simple API.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-arceliar-ironwood
   (package
     (name "go-github-com-arceliar-ironwood")



reply via email to

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