guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 28a2a637bc7baaf338220dbf8cda83cf4b6ae701
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Sep 16 15:39:27 2025 +0200

    gnu: hydra: Improve style.
    
    * gnu/packages/password-utils.scm (hydra)[arguments]: Use G-Expressions.
    
    Change-Id: Iae3be2b9163b124766819c8e7a6aba202239f397
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/password-utils.scm | 31 +++++++++++++++++--------------
 1 file changed, 17 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 0e4923553b..20105e4291 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -1808,22 +1808,25 @@ names.")
     (name "hydra")
     (version "9.5")
     (home-page "https://github.com/vanhauser-thc/thc-hydra";)
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url home-page)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0pg4alaznygngdzn4k6p540g059w7mpiakchsp0526f1b9s33lw1"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0pg4alaznygngdzn4k6p540g059w7mpiakchsp0526f1b9s33lw1"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f ;no test suite
-       #:make-flags (list (string-append "CC="
-                                         ,(cc-for-target)))))
-    (native-inputs (list pkg-config))
-    (inputs (list freerdp gtk+ openssl zlib))
+     (list
+      #:make-flags #~(list (string-append "CC=" #$(cc-for-target)))
+      #:tests? #f)) ;no test suite
+    (native-inputs
+     (list pkg-config))
+    (inputs
+     (list freerdp gtk+ openssl zlib))
     (synopsis "Gain access to a remote system by trying logins and passwords")
     (description
      "This package provides a tool to demonstrate how easy it is to gain

Reply via email to