Archived
1
0
Fork 0

gnu: linenoise: Update to commit 2105ce445821381cf1bca87b6d386d4ea88ee20d.

* gnu/packages/shells.scm (linenoise): Update to commit
2105ce445821381cf1bca87b6d386d4ea88ee20d. Fix indentation.
[source]: change to git.

Signed-off-by: Kei Kebreau <kei@openmailbox.org>
This commit is contained in:
ng0 2017-06-29 15:52:15 +00:00 committed by Kei Kebreau
parent f152208b0d
commit 05af41a181
No known key found for this signature in database
GPG key ID: E6A5EE3C19467A0D

View file

@ -449,18 +449,21 @@ operating system.")
(license bsd-3)))) (license bsd-3))))
(define-public linenoise (define-public linenoise
(let ((commit "2105ce445821381cf1bca87b6d386d4ea88ee20d")
(revision "1"))
(package (package
(name "linenoise") (name "linenoise")
(version "1.0") (version (string-append "1.0-" revision "." (string-take commit 7)))
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/antirez/linenoise/" (uri (git-reference
"archive/" version ".tar.gz")) (url "https://github.com/antirez/linenoise")
(file-name (string-append name "-" version ".tar.gz")) (commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256 (sha256
(base32 (base32
"05006hd56xcvxjdpll4x720bpfan7vwqmxbw8a2kvm10w57ll1gm")))) "1z16qwix8z6a40fskdgxsibkqgdrp4q6ncp4n6hnv4r9iihy2d8r"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ;No tests are included `(#:tests? #f ;No tests are included
@ -490,7 +493,7 @@ Its features include:
@item Hints (suggestions at the right of the prompt as you type) @item Hints (suggestions at the right of the prompt as you type)
@item A subset of VT100 escapes, ANSI.SYS compatible @item A subset of VT100 escapes, ANSI.SYS compatible
@end enumerate\n") @end enumerate\n")
(license bsd-2))) (license bsd-2))))
(define-public s-shell (define-public s-shell
(let ((commit "6604341edb3a775ff94415762af3ee9bd86bfb3c") (let ((commit "6604341edb3a775ff94415762af3ee9bd86bfb3c")