From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: [PATCH] gnu: Add Aircrack-ng. Date: Thu, 11 Aug 2016 07:58:17 -0500 Message-ID: <20160811125817.17636-1-ericbavier@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51002) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXpZE-0008Sd-8M for guix-devel@gnu.org; Thu, 11 Aug 2016 08:58:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bXpZ9-0003lf-DW for guix-devel@gnu.org; Thu, 11 Aug 2016 08:58:35 -0400 Received: from mail2.openmailbox.org ([62.4.1.33]:33552) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXpZ9-0003lU-6d for guix-devel@gnu.org; Thu, 11 Aug 2016 08:58:31 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: Eric Bavier From: Eric Bavier * gnu/packages/networking.scm (aircrack-ng): New variable. --- gnu/packages/networking.scm | 44 +++++++++++++++++++++++++++++++++++++++= +++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 77207c0..90e290e 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -7,6 +7,7 @@ ;;; Copyright =C2=A9 2016 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2016 John Darrington ;;; Copyright =C2=A9 2016 Nicolas Goaziou +;;; Copyright =C2=A9 2016 Eric Bavier ;;; ;;; This file is part of GNU Guix. ;;; @@ -38,6 +39,7 @@ #:use-module (gnu packages bison) #:use-module (gnu packages check) #:use-module (gnu packages compression) + #:use-module (gnu packages databases) #:use-module (gnu packages flex) #:use-module (gnu packages gettext) #:use-module (gnu packages gnupg) @@ -46,6 +48,7 @@ #:use-module (gnu packages lua) #:use-module (gnu packages mit-krb5) #:use-module (gnu packages ncurses) + #:use-module (gnu packages pcre) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) @@ -415,6 +418,47 @@ by firewalls or when you want to monitor the respons= e time of the actual web application stack itself.") (license license:gpl2))) ; with permission to link with OpenS= SL =20 +(define-public aircrack-ng + (package + (name "aircrack-ng") + (version "1.2-rc4") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.aircrack-ng.org/aircrack-ng-= " + version ".tar.gz")) + (sha256 + (base32 + "0dpzx9kddxpgzmgvdpl3rxn0jdaqhm5wxxndp1xd7d75mmmc2fnr")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("libgcrypt" ,libgcrypt) + ("libnl" ,libnl) + ("ethtool" ,ethtool) + ("pcre" ,pcre) + ("sqlite" ,sqlite) + ("zlib" ,zlib))) + (arguments + `(#:make-flags `("sqlite=3Dtrue" + "gcrypt=3Dtrue" + "libnl=3Dtrue" + "pcre=3Dtrue" + "experimental=3Dtrue" + "AVX2FLAG=3DN" "AVX1FLAG=3DN" "SSEFLAG=3DY" + ,(string-append "prefix=3D" %output)) + #:phases (modify-phases %standard-phases + (delete 'configure)))) ;no configure phase + (home-page "http://www.aircrack-ng.org") + (synopsis "Assess WiFi network security") + (description + "Aircrack-ng is a complete suite of tools to assess WiFi nnetwork +security. It focuses on different areas of WiFi security: monitoring, +attacking, testing, and cracking. All tools are command-line driven, wh= ich +allows for heavy scripting.") + (license (list license:gpl2+ license:bsd-3)))) + (define-public perl-net-dns (package (name "perl-net-dns") --=20 2.9.2