26 lines
630 B
Nix
26 lines
630 B
Nix
{ stdenv, lib, fetchFromGitHub, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hcxdumptool";
|
|
version = "6.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ZerBea";
|
|
repo = "hcxdumptool";
|
|
rev = version;
|
|
sha256 = "1bbf617islljmcw665vqwlplbkpa36w2n4fc4avy7blj773lxp6y";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.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 ];
|
|
};
|
|
}
|