mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
27 lines
655 B
Nix
27 lines
655 B
Nix
{ stdenv, lib, fetchFromGitHub, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hcxdumptool";
|
|
version = "6.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ZerBea";
|
|
repo = "hcxdumptool";
|
|
rev = version;
|
|
sha256 = "sha256-InMyDUEH135Y1RYJ3z1+RQxPMi7+QMf670S/S2ZL9vg=";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ZerBea/hcxdumptool";
|
|
description = "Small tool to capture packets from wlan devices";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ danielfullmer ];
|
|
mainProgram = "hcxdumptool";
|
|
};
|
|
}
|