linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / bully / default.nix
blobb49af33cd9e9da2aa7d214f6fca8c3bfe605c21f
1 { lib, stdenv, fetchFromGitHub, libpcap }:
3 stdenv.mkDerivation rec {
4   pname = "bully";
5   version = "1.4-00";
7   src = fetchFromGitHub {
8     owner = "kimocoder";
9     repo = "bully";
10     rev = version;
11     sha256 = "1n2754a5z44g414a0hj3cmi9q5lwnzyvmvzskrj2nci8c8m2kgnf";
12   };
14   buildInputs = [ libpcap ];
16   enableParallelBuilding = true;
18   sourceRoot = "./source/src";
20   installPhase = ''
21     install -Dm555 -t $out/bin bully
22     install -Dm444 -t $out/share/doc/${pname} ../*.md
23   '';
25   meta = with lib; {
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;
31   };