guix-commits
[Top][All Lists]
Advanced

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

26/60: gnu: Add go-github-com-google-goterm.


From: guix-commits
Subject: 26/60: gnu: Add go-github-com-google-goterm.
Date: Sun, 9 Aug 2020 10:24:57 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit e465f72fbb73a1f75d7e5573abdb67272bb5ad1a
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 00:57:02 2020 +0300

    gnu: Add go-github-com-google-goterm.
    
    * gnu/packages/golang.scm (go-github-com-google-goterm): New variable.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 53efa47..89fa696 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3904,6 +3904,32 @@ are semantically equal in Go (for writing tests).")
 4122 and DCE 1.1: Authentication and Security Services.")
     (license license:bsd-3)))
 
+(define-public go-github-com-google-goterm
+  (let ((commit "fc88cf888a3fa99ecc23d1efc1a44284268457d3")
+        (revision "1"))
+    (package
+      (name "go-github-com-google-goterm")
+      (version (git-version "0.0.1" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/google/goterm";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0809sf02dhg2bjhsz43pmlb5d7nbsnwxls3lw01zw5p7ri9bqwfb"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "github.com/google/goterm/term"
+         #:unpack-path "github.com/google/goterm"))
+      (home-page "https://github.com/google/goterm/";)
+      (synopsis "PTY creation and termios get/set attributes")
+      (description "The term package implements PTY creation and termios 
get/set
+attributes.  It also contains some convenience functions for colors, SSH to
+and from termios translations, readCh, reading passwords, etc.")
+      (license license:bsd-3))))
+
 (define-public go-golang.org-x-sync-errgroup
   (let ((commit "cd5d95a43a6e21273425c7ae415d3df9ea832eeb")
         (revision "0"))



reply via email to

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