gnu: hcxdumptool: Update to 6.3.5.

* gnu/packages/networking.scm (hcxdumptool): Update to 6.3.5.
[inputs]: Add libpcap.
[arguments]: Use GEXPs.  Update make flags.

Change-Id: I5e1de4eb25d016d76c1dfa4a434ad64751b631f1
This commit is contained in:
Artyom V. Poptsov 2025-05-25 11:13:17 +03:00
parent cb3eb101c7
commit c669724138
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -3736,7 +3736,7 @@ packets from wireless devices for use with hashcat or John the Ripper.")
(define-public hcxdumptool (define-public hcxdumptool
(package (package
(name "hcxdumptool") (name "hcxdumptool")
(version "6.0.6") (version "6.3.5")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -3744,19 +3744,21 @@ packets from wireless devices for use with hashcat or John the Ripper.")
(url "https://github.com/ZerBea/hcxdumptool") (url "https://github.com/ZerBea/hcxdumptool")
(commit version))) (commit version)))
(sha256 (sha256
(base32 "1b4d543y64ib92w9gcmiyjn5hz2vyjqmxk3f3yr1zk04fhw16gmf")) (base32 "12q5qzni0ggk76wsprk68l8g07rrgv46xw4ycnpvbj9q71p2f3iw"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:make-flags (list
(list ,(string-append "CC=" (cc-for-target)) #:make-flags
(string-append "INSTALLDIR=" (assoc-ref %outputs "out") "/bin")) #~(list (string-append "CC=" #$(cc-for-target))
(string-append "DESTDIR=")
(string-append "PREFIX=" #$output))
#:tests? #f ; no test suite #:tests? #f ; no test suite
#:phases #:phases
(modify-phases %standard-phases #~(modify-phases %standard-phases
(delete 'configure)))) (delete 'configure))))
(inputs (inputs
(list openssl)) (list libpcap openssl))
(home-page "https://github.com/ZerBea/hcxdumptool") (home-page "https://github.com/ZerBea/hcxdumptool")
(synopsis "Small tool to capture packets from wlan devices") (synopsis "Small tool to capture packets from wlan devices")
(description (description