summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2025-05-25 11:13:17 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2025-05-26 06:54:48 +0300
commitc669724138274f8a008d1370d21a56e8b7b68d2e (patch)
treebbbbfcee3a6050b67149a2c24a45220cf5fff73a /gnu
parentcb3eb101c72ec7f14765b659f1655b6fe92a28e0 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/networking.scm18
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 6f3fe30b729..62bbd4dc821 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -3736,7 +3736,7 @@ packets from wireless devices for use with hashcat or John the Ripper.")
3736(define-public hcxdumptool 3736(define-public hcxdumptool
3737 (package 3737 (package
3738 (name "hcxdumptool") 3738 (name "hcxdumptool")
3739 (version "6.0.6") 3739 (version "6.3.5")
3740 (source 3740 (source
3741 (origin 3741 (origin
3742 (method git-fetch) 3742 (method git-fetch)
@@ -3744,19 +3744,21 @@ packets from wireless devices for use with hashcat or John the Ripper.")
3744 (url "https://github.com/ZerBea/hcxdumptool") 3744 (url "https://github.com/ZerBea/hcxdumptool")
3745 (commit version))) 3745 (commit version)))
3746 (sha256 3746 (sha256
3747 (base32 "1b4d543y64ib92w9gcmiyjn5hz2vyjqmxk3f3yr1zk04fhw16gmf")) 3747 (base32 "12q5qzni0ggk76wsprk68l8g07rrgv46xw4ycnpvbj9q71p2f3iw"))
3748 (file-name (git-file-name name version)))) 3748 (file-name (git-file-name name version))))
3749 (build-system gnu-build-system) 3749 (build-system gnu-build-system)
3750 (arguments 3750 (arguments
3751 `(#:make-flags 3751 (list
3752 (list ,(string-append "CC=" (cc-for-target)) 3752 #:make-flags
3753 (string-append "INSTALLDIR=" (assoc-ref %outputs "out") "/bin")) 3753 #~(list (string-append "CC=" #$(cc-for-target))
3754 (string-append "DESTDIR=")
3755 (string-append "PREFIX=" #$output))
3754 #:tests? #f ; no test suite 3756 #:tests? #f ; no test suite
3755 #:phases 3757 #:phases
3756 (modify-phases %standard-phases 3758 #~(modify-phases %standard-phases
3757 (delete 'configure)))) 3759 (delete 'configure))))
3758 (inputs 3760 (inputs
3759 (list openssl)) 3761 (list libpcap openssl))
3760 (home-page "https://github.com/ZerBea/hcxdumptool") 3762 (home-page "https://github.com/ZerBea/hcxdumptool")
3761 (synopsis "Small tool to capture packets from wlan devices") 3763 (synopsis "Small tool to capture packets from wlan devices")
3762 (description 3764 (description