mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: hydra: Improve style.
* gnu/packages/password-utils.scm (hydra)[arguments]: Use G-Expressions. Change-Id: Iae3be2b9163b124766819c8e7a6aba202239f397 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
82b51cc809
commit
28a2a637bc
1 changed files with 17 additions and 14 deletions
|
@ -1808,22 +1808,25 @@ names.")
|
||||||
(name "hydra")
|
(name "hydra")
|
||||||
(version "9.5")
|
(version "9.5")
|
||||||
(home-page "https://github.com/vanhauser-thc/thc-hydra")
|
(home-page "https://github.com/vanhauser-thc/thc-hydra")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url home-page)
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url home-page)
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0pg4alaznygngdzn4k6p540g059w7mpiakchsp0526f1b9s33lw1"))))
|
(base32
|
||||||
|
"0pg4alaznygngdzn4k6p540g059w7mpiakchsp0526f1b9s33lw1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no test suite
|
(list
|
||||||
#:make-flags (list (string-append "CC="
|
#:make-flags #~(list (string-append "CC=" #$(cc-for-target)))
|
||||||
,(cc-for-target)))))
|
#:tests? #f)) ;no test suite
|
||||||
(native-inputs (list pkg-config))
|
(native-inputs
|
||||||
(inputs (list freerdp gtk+ openssl zlib))
|
(list pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list freerdp gtk+ openssl zlib))
|
||||||
(synopsis "Gain access to a remote system by trying logins and passwords")
|
(synopsis "Gain access to a remote system by trying logins and passwords")
|
||||||
(description
|
(description
|
||||||
"This package provides a tool to demonstrate how easy it is to gain
|
"This package provides a tool to demonstrate how easy it is to gain
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue