guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/06: gnu: hcxtools: Use gexps.


From: guix-commits
Subject: 04/06: gnu: hcxtools: Use gexps.
Date: Thu, 16 Jun 2022 17:58:42 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9317cb3e9c6e65af6473818cadaee12f667a1783
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Tue Jun 7 12:07:42 2022 +0200

    gnu: hcxtools: Use gexps.
    
    * gnu/packages/networking.scm (hcxtools)[arguments]: Link libraries and
    use PREFIX instead of INSTALL_DIR.
    [phases]: Use gexps.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/networking.scm | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 07ee9d3ea0..1d092e6b96 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -3289,16 +3289,19 @@ Ethernet and TAP interfaces is supported.  Packet 
capture is also supported.")
         (base32 "0k2qlq9hz5zc21nyc6yrnfqzga7hydn5mm0x3rpl2fhkwl81lxcn"))
        (file-name (git-file-name name version))))
     (build-system gnu-build-system)
-    (inputs
-     (list curl libpcap openssl zlib))
+    (native-inputs (list pkg-config))
+    (inputs (list curl libpcap openssl zlib))
     (arguments
-     `(#:make-flags
-       (list ,(string-append "CC=" (cc-for-target))
-             (string-append "INSTALLDIR=" (assoc-ref %outputs "out") "/bin"))
-       #:tests? #f                      ; no test suite
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))
+     (list #:make-flags
+           #~(list (string-append "CC="
+                                  #$(cc-for-target)) "LDFLAGS+=-lcrypto"
+                   "LDFLAGS+=-lcurl" "LDFLAGS+=-lz"
+                   (string-append "PREFIX="
+                                  #$output))
+           #:tests? #f                            ;no test suite
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))))
     (home-page "https://github.com/ZerBea/hcxtools";)
     (synopsis "Capture wlan traffic to hashcat and John the Ripper")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]