mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: endlessh: Update to 1.1.
* gnu/packages/ssh.scm (endlessh): Update to 1.1. [source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
8b9cad01e9
commit
63b148f70f
1 changed files with 9 additions and 8 deletions
|
@ -769,23 +769,24 @@ (define-public clustershell
|
||||||
(define-public endlessh
|
(define-public endlessh
|
||||||
(package
|
(package
|
||||||
(name "endlessh")
|
(name "endlessh")
|
||||||
(version "1.0")
|
(version "1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/skeeto/endlessh/releases/"
|
(uri (git-reference
|
||||||
"download/" version "/endlessh-" version ".tar.xz"))
|
(url "https://github.com/skeeto/endlessh.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0ziwr8j1frsp3dajr8h5glkm1dn5cci404kazz5w1jfrp0736x68"))))
|
||||||
"0hhsr65hzrcb7ylskmxyr92svzndhks8hqzn8hvg7f7j89rkvq5k"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
'(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||||
"CC=gcc")
|
"CC=gcc")
|
||||||
#:tests? #f ; no test target
|
#:tests? #f ; no test target
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)))) ; no configure script
|
(delete 'configure)))) ; no configure script
|
||||||
(home-page "https://github.com/skeeto/endlessh")
|
(home-page "https://github.com/skeeto/endlessh")
|
||||||
(synopsis "SSH tarpit that slowly sends an endless banner")
|
(synopsis "SSH tarpit that slowly sends an endless banner")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue