biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / hcxdumptool / default.nix
blobc718ec0b5a0f1b5f68ed8b6d9e750ee45628fa4f
1 { stdenv, lib, fetchFromGitHub, openssl }:
3 stdenv.mkDerivation rec {
4   pname = "hcxdumptool";
5   version = "6.3.2";
7   src = fetchFromGitHub {
8     owner = "ZerBea";
9     repo = "hcxdumptool";
10     rev = version;
11     sha256 = "sha256-InMyDUEH135Y1RYJ3z1+RQxPMi7+QMf670S/S2ZL9vg=";
12   };
14   buildInputs = [ openssl ];
16   installFlags = [ "PREFIX=$(out)" ];
18   meta = with lib; {
19     homepage = "https://github.com/ZerBea/hcxdumptool";
20     description = "Small tool to capture packets from wlan devices";
21     license = licenses.mit;
22     platforms = platforms.linux;
23     maintainers = with maintainers; [ danielfullmer ];
24     mainProgram = "hcxdumptool";
25   };