guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add go-github-com-gdamore-tcell-v2.


From: guix-commits
Subject: 02/02: gnu: Add go-github-com-gdamore-tcell-v2.
Date: Mon, 30 Aug 2021 14:56:32 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit cc71a54e9f900e905192f794c7bc5346c445e651
Author: Guix Together <jgart@dismail.de>
AuthorDate: Mon Aug 30 12:40:38 2021 -0400

    gnu: Add go-github-com-gdamore-tcell-v2.
    
    * gnu/packages/golang.scm (go-github-com-gdamore-tcell-v2): New variable.
    
    Co-authored-by: Arun Isaac <arunisaac@systemreboot.net>
    Co-authored-by: Brice Waegeneire <brice@waegenei.re>
    Co-authored-by: jgart <jgart@dismail.de>
    Co-authored-by: Julien Lepiller <julien@lepiller.eu>
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index aed7025..b6e8b84 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5257,6 +5257,37 @@ formatting.  It also favors portability, and includes 
support for all POSIX
 systems.")
       (license license:asl2.0))))
 
+(define-public go-github-com-gdamore-tcell-v2
+    (package
+      (inherit go-github-com-gdamore-tcell)
+      (name "go-github-com-gdamore-tcell")
+      (version "2.3.1")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/gdamore/tcell";)
+               (commit (string-append "v" version))))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0ypbl5080q9sd3irad8mv7zlg4242i8pmg5xyhbyq95kymwibaid"))))
+      (arguments
+       `(#:import-path "github.com/gdamore/tcell/v2"
+         #: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$"))))))))
+      (propagated-inputs
+       `(("go-golang-org-x-term" ,go-golang-org-x-term)
+         ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+         ,@(package-inputs go-github-com-gdamore-tcell)))))
+
 (define-public go-github-com-mattn-go-shellwords
   (let ((commit "2444a32a19f450fabaa0bb3e96a703f15d9a97d2")
         (version "1.0.5")



reply via email to

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