a0718341e6
github account deleted
48 lines
1.6 KiB
Nix
48 lines
1.6 KiB
Nix
{ lib, stdenv, fetchurl, libpcap, sqlite, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4";
|
|
pname = "reaver-wps";
|
|
confdir = "/var/db/${pname}-${version}"; # the sqlite database is at "${confdir}/reaver/reaver.db"
|
|
|
|
src = fetchurl {
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/reaver-wps/reaver-${version}.tar.gz";
|
|
sha256 = "0bdjai4p8xbsw8zdkkk43rgsif79x0nyx4djpyv0mzh59850blxd";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ libpcap sqlite ];
|
|
|
|
# Workaround build failure on -fno-common toolchains:
|
|
# ld: crypto/dh_groups.o:src/crypto/../globule.h:141: multiple definition of
|
|
# `globule'; /build/ccrzO6vA.o:src/globule.h:141: first defined here
|
|
NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
setSourceRoot = ''
|
|
sourceRoot=$(echo */src)
|
|
'';
|
|
|
|
configureFlags = [ "--sysconfdir=${confdir}" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,etc}
|
|
cp reaver.db $out/etc/
|
|
cp reaver wash $out/bin/
|
|
|
|
wrapProgram $out/bin/reaver --run "[ -s ${confdir}/reaver/reaver.db ] || install -D $out/etc/reaver.db ${confdir}/reaver/reaver.db"
|
|
wrapProgram $out/bin/wash --run "[ -s ${confdir}/reaver/reaver.db ] || install -D $out/etc/reaver.db ${confdir}/reaver/reaver.db"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [ ./parallel-build.patch ];
|
|
|
|
meta = with lib; {
|
|
description = "Brute force attack against Wifi Protected Setup";
|
|
homepage = "https://code.google.com/archive/p/reaver-wps/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ nico202 ];
|
|
};
|
|
}
|