mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add hss.
* gnu/packages/admin.scm (hss): New variable.
This commit is contained in:
parent
cc0aaf2052
commit
ee56de8b5b
1 changed files with 47 additions and 0 deletions
|
@ -1238,6 +1238,53 @@ (define-public clusterssh
|
||||||
over ssh connections.")
|
over ssh connections.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public hss
|
||||||
|
(package
|
||||||
|
(name "hss")
|
||||||
|
(version "1.8")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/six-ddc/hss.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1rpysj65j9ls30bf2c5k5hykzzjfknrihs58imp178bx1wqzw4jl"))))
|
||||||
|
(inputs
|
||||||
|
`(("readline" ,readline)))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ;no tests
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'set-env
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("/usr/local/bin")
|
||||||
|
(string-append (assoc-ref outputs "out") "/bin"))
|
||||||
|
(("/usr/local/opt/readline")
|
||||||
|
(assoc-ref inputs "readline")))
|
||||||
|
(setenv "CC" "gcc")))
|
||||||
|
(delete 'configure))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(home-page "https://github.com/six-ddc/hss/")
|
||||||
|
(synopsis "Interactive SSH client for multiple servers")
|
||||||
|
(description "@command{hss} is an interactive SSH client for multiple
|
||||||
|
servers. It will provide almost the same experience as in the Bash
|
||||||
|
environment. It supports:
|
||||||
|
|
||||||
|
@itemize @bullet
|
||||||
|
@item interactive input: based on @code{libreadline}.
|
||||||
|
@item history: responding to the @key{C-r} key.
|
||||||
|
@item auto-completion: completion from remote server on the @key{TAB} key, for
|
||||||
|
commands and paths.
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
Command is executed on all servers in parallel. Execution on one server does
|
||||||
|
not need to wait for that on another server to finish before starting. So we
|
||||||
|
can run a command on hundreds of servers at the same time.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rename
|
(define-public rename
|
||||||
(package
|
(package
|
||||||
(name "rename")
|
(name "rename")
|
||||||
|
|
Loading…
Reference in a new issue