guix-commits
[Top][All Lists]
Advanced

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

51/60: gnu: Add go-github-com-twpayne-go-shell.


From: guix-commits
Subject: 51/60: gnu: Add go-github-com-twpayne-go-shell.
Date: Sun, 9 Aug 2020 10:25:05 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit fb1cc65af1dc4ab131cf3a9ad223dd24c3ede376
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 15:48:36 2020 +0300

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

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c767ed6..e991e37 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5388,3 +5388,25 @@ temporal directories.")
       (description
        "This package provides a Go library to create and print diffs.")
       (license license:bsd-3))))
+
+(define-public go-github-com-twpayne-go-shell
+  (package
+    (name "go-github-com-twpayne-go-shell")
+    (version "0.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/twpayne/go-shell";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1hv0ggy3935iddjnmpp9vl0kqjknxpnbmm9w7xr3gds7fpbxz6yp"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/twpayne/go-shell"))
+    (home-page "https://github.com/twpayne/go-shell/";)
+    (synopsis "Shell across multiple platforms")
+    (description
+     "Package @code{shell} returns a user's shell across multiple platforms.")
+    (license license:expat)))



reply via email to

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