guix-patches
[Top][All Lists]
Advanced

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

[bug#48361] [PATCH 3/5] gnu: Add go-github-com-containerd-console.


From: Stefan Reichör
Subject: [bug#48361] [PATCH 3/5] gnu: Add go-github-com-containerd-console.
Date: Tue, 11 May 2021 20:55:52 +0200

* gnu/packages/golang.scm (go-github-com-containerd-console): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 8b50b15ccb..77abde2575 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5841,6 +5841,30 @@ templates on ANSI compatible terminals.  You can create 
your own stylesheet or
 use one of our glamorous default themes.")
     (license license:expat)))
 
+(define-public go-github-com-containerd-console
+  (package
+    (name "go-github-com-containerd-console")
+    (version "1.0.2")
+    (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
+                "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/containerd/console"))
+    (native-inputs
+     `(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
+    (home-page "https://github.com/containerd/console";)
+    (synopsis "Console package for Go")
+    (description "Golang package for dealing with consoles.  Light on
+dependencies and a simple API.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-coreos-go-semver
   (package
     (name "go-github-com-coreos-go-semver")
-- 
2.25.1






reply via email to

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