gnu: Add go-github-com-twpayne-go-shell.
* gnu/packages/golang.scm (go-github-com-twpayne-go-shell): New variable.
This commit is contained in:
parent
55ce6fe9b8
commit
fb1cc65af1
1 changed files with 22 additions and 0 deletions
|
@ -5388,3 +5388,25 @@ temporal directories.")
|
||||||
(description
|
(description
|
||||||
"This package provides a Go library to create and print diffs.")
|
"This package provides a Go library to create and print diffs.")
|
||||||
(license license:bsd-3))))
|
(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)))
|
||||||
|
|
Reference in a new issue