[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#37444] [PATCH v3 20/23] added go package go-git-sr-ht-sircmpwn-tcel
From: |
Martin Becze |
Subject: |
[bug#37444] [PATCH v3 20/23] added go package go-git-sr-ht-sircmpwn-tcell |
Date: |
Thu, 26 Sep 2019 11:21:15 -0400 |
---
gnu/packages/golang.scm | 46 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b925f5df95..066ea4ee6f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4213,3 +4213,49 @@ quoting, commenting, and escaping.")
(synopsis "A Go package for using unix pseudo-terminals")
(description "Pty is a Go package for using unix pseudo-terminals.")
(license license:expat))))
+
+(define-public go-git-sr-ht-sircmpwn-tcell
+ (let ((commit "3fdb6bc01a5035fe7cd57b9b0b56166a44db8620")
+ (version "0.0.0"))
+ (package
+ (name "go-git-sr-ht-sircmpwn-tcell")
+ (version (git-version version "0" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~sircmpwn/tcell")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1g7vx0qzwp6wsp47l2rabmkrxp7x3z8s94gjf6722z7sfb8xybas"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/gdamore/tcell"
+ #:unpack-path "github.com/gdamore/tcell"
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'reset-gzip-timestamps 'make-files-writable
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Make sure .gz files are writable so that the
+ ;; 'reset-gzip-timestamps' phase can do its work.
+ (let ((out (assoc-ref outputs "out")))
+ (for-each make-file-writable
+ (find-files out "\\.gz$"))
+ #t))))))
+ (propagated-inputs
+ `(("go-golang-org-colorful" ,go-golang-org-colorful)
+ ("go-github-com-gdamore-encoding" ,go-github-com-gdamore-encoding)))
+ (inputs
+ `(("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
+ ("go-golang-org-x-text-encoding" ,go-golang-org-x-text-encoding)
+ ("go-golang-org-x-text-transform" ,go-golang-org-x-text-transform)
+ ("go-golang-org-x-sys-unix" ,go-golang-org-x-sys-unix)))
+ (home-page "https://github.com/gdamore/tcell")
+ (synopsis "Provide a cell-based view for text terminals")
+ (description "This package includes a full parser and expander for
+terminfo capability strings to avoid hard-coding escape strings for
+formatting. It also favors portability, and includes support for all POSIX
+systems.")
+ (license license:expat))))
--
2.23.0
- [bug#37444] [PATCH v3 11/23] added go package go-github-com-fsnotify-fsnotify, (continued)
- [bug#37444] [PATCH v3 11/23] added go package go-github-com-fsnotify-fsnotify, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 12/23] added go package go-github-com-go-ini-ini, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 14/23] added go package go-github-com-kyoh86-xdg, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 15/23] added go package go-github-com-martinlindhe-base36, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 18/23] added go package go-git-sr-ht-sircmpwn-getopt, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 19/23] added go package go-git-sr-ht-sircmpwn-pty, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 16/23] added go package go-github-com-miolini-datacounter, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 17/23] added go package go-github-com-riywo-loginshell, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 23/23] progagated inputs for gdamore-encoding, since this is a source only package and the go compiler needs its dependency when used as an input in another package, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 13/23] added go package go-github-com-google-shlex, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 20/23] added go package go-git-sr-ht-sircmpwn-tcell,
Martin Becze <=
- [bug#37444] [PATCH v3 22/23] updated go-github-com-mitchellh-go-homedir to version 1.1.0, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v3 21/23] added aerc, a simple email client, Martin Becze, 2019/09/26
- [bug#37444] [PATCH v2 1/4] Added the dependcies for aerc. NOTE i tried to place depency authors next to each other., Martin Becze, 2019/09/18