mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: webssh: Update to 1.6.2.
* gnu/packages/ssh.scm (webssh): Update to 1.6.2. [build-system]: Swap to pyproject-build-system. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: Icaef06a86ac8c4c02a74a376d0501152675d2122
This commit is contained in:
parent
ec1a67d4ff
commit
e6e4e88f45
1 changed files with 19 additions and 14 deletions
|
@ -938,23 +938,28 @@ (define-public endlessh
|
||||||
(define-public webssh
|
(define-public webssh
|
||||||
(package
|
(package
|
||||||
(name "webssh")
|
(name "webssh")
|
||||||
(version "1.5.3")
|
(version "1.6.2")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/huashengdun/webssh")
|
(url "https://github.com/huashengdun/webssh")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0v0dxnqac9xdj06lhljv6bhi8hd16rn6h0qr7fkm640nvr55a8i1"))))
|
||||||
"1bcy9flrzbvams5p77swwiygv54ac58ia7hpic1bvg30b3wpvv7b"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-paramiko python-tornado))
|
(list python-paramiko
|
||||||
|
python-tornado))
|
||||||
(home-page "https://webssh.huashengdun.org/")
|
(home-page "https://webssh.huashengdun.org/")
|
||||||
(synopsis "Web application to be used as an SSH client")
|
(synopsis "Web application to be used as an SSH client")
|
||||||
(description "This package provides a web application to be used as an SSH
|
(description
|
||||||
client.
|
"This package provides a web application to be used as an SSH client.
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
|
Loading…
Reference in a new issue