1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 05:26:13 -04:00
nixpkgs/pkgs/tools/networking/reaver-wps/default.nix

28 lines
601 B
Nix
Raw Normal View History

2013-04-26 09:06:20 -04:00
{ stdenv, fetchurl, libpcap, sqlite }:
stdenv.mkDerivation rec {
name = "reaver-wps-1.4";
src = fetchurl {
url = http://reaver-wps.googlecode.com/files/reaver-1.4.tar.gz;
sha256 = "0bdjai4p8xbsw8zdkkk43rgsif79x0nyx4djpyv0mzh59850blxd";
};
buildInputs = [ libpcap sqlite ];
prePatch = ''
cd src
'';
preInstall = ''
mkdir -p $out/bin
2013-04-26 09:06:20 -04:00
'';
meta = {
description = "Brute force attack against Wifi Protected Setup";
homepage = http://code.google.com/p/reaver-wps;
license = stdenv.lib.licenses.gpl2Plus;
2015-10-13 08:45:52 -04:00
platforms = stdenv.lib.platforms.linux;
2013-04-26 09:06:20 -04:00
};
}