biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / reaver-wps-t6x / default.nix
blob83479a6d88ed3e74a5f26111c63643e78005c6ed
1 { lib, stdenv, fetchFromGitHub, libpcap, pixiewps, makeWrapper }:
3 stdenv.mkDerivation rec {
4   pname = "reaver-wps-t6x";
5   version = "1.6.6";
7   src = fetchFromGitHub {
8     owner = "t6x";
9     repo = "reaver-wps-fork-t6x";
10     rev = "v${version}";
11     sha256 = "sha256-7g4ZRkyu0TIOUw68dSPP4RyIRyeq1GgUMYFVSQB8/1I=";
12   };
14   nativeBuildInputs = [ makeWrapper ];
15   buildInputs = [ libpcap pixiewps ];
17   sourceRoot = "${src.name}/src";
19   meta = with lib; {
20     description = "Online and offline brute force attack against WPS";
21     homepage = "https://github.com/t6x/reaver-wps-fork-t6x";
22     license = licenses.gpl2Plus;
23     platforms = platforms.linux;
24     maintainers = with maintainers; [ nico202 ];
25   };