From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54997) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fkRjE-0005xB-Vl for guix-patches@gnu.org; Tue, 31 Jul 2018 06:18:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fkRj8-0001ZN-Vx for guix-patches@gnu.org; Tue, 31 Jul 2018 06:18:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59014) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fkRj8-0001ZG-Qt for guix-patches@gnu.org; Tue, 31 Jul 2018 06:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fkRj8-0007tk-KX for guix-patches@gnu.org; Tue, 31 Jul 2018 06:18:02 -0400 Subject: [bug#32332] [PATCH 4/4] gnu: Add hcxdumptool. Resent-Message-ID: From: Pierre Neidhardt Date: Tue, 31 Jul 2018 12:17:23 +0200 Message-Id: <20180731101723.28512-3-ambrevar@gmail.com> In-Reply-To: <20180731101723.28512-1-ambrevar@gmail.com> References: <20180731101723.28512-1-ambrevar@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32332@debbugs.gnu.org * gnu/packages/networking.scm (hcxdumptool): New variable. --- gnu/packages/networking.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index c72c27137..7b4e8a896 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2013,3 +2013,32 @@ Features: "This package contains a small set of tools to capture and convert packets from wireless devices for use with hashcat or John the Ripper.") (license license:expat)))) + +(define-public hcxdumptool + (let* ((commit "f4799b5da82c5b030a6d99b02d1c1b9dc838ad36")) + (package + (name "hcxdumptool") + (version (git-version "0.0.0" "1" commit)) + (home-page "https://github.com/ZerBea/hcxdumptool") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (sha256 + (base32 + "0qlsin0rws9sshn12faq4spmd0ffzssal36s71vhv6gkhhga7abl")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list "CC=gcc" + (string-append "INSTALLDIR=" (assoc-ref %outputs "out") "/bin")) + #:tests? #f ;no tests + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (synopsis "Capture wlan traffic to hashcat and John the Ripper") + (description + "This package contains a small set of tools to capture and convert +packets from wireless devices for use with hashcat or John the Ripper.") + (license license:expat)))) -- 2.18.0