1 { lib, stdenv, fetchFromGitHub, libpcap }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1n2754a5z44g414a0hj3cmi9q5lwnzyvmvzskrj2nci8c8m2kgnf";
14 buildInputs = [ libpcap ];
16 enableParallelBuilding = true;
18 sourceRoot = "./source/src";
21 install -Dm555 -t $out/bin bully
22 install -Dm444 -t $out/share/doc/${pname} ../*.md
26 description = "Retrieve WPA/WPA2 passphrase from a WPS enabled access point";
27 homepage = "https://github.com/kimocoder/bully";
28 license = licenses.gpl3;
29 maintainers = with maintainers; [ edwtjo ];
30 platforms = platforms.linux;