hcxdumptool: 6.3.2 -> 6.3.5 (#402918)

This commit is contained in:
Pol Dellaiera
2025-05-02 16:04:59 +02:00
committed by GitHub
+15 -11
View File
@@ -1,31 +1,35 @@
{
stdenv,
lib,
stdenv,
fetchFromGitHub,
openssl,
libpcap,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "hcxdumptool";
version = "6.3.2";
version = "6.3.5";
src = fetchFromGitHub {
owner = "ZerBea";
repo = "hcxdumptool";
rev = version;
sha256 = "sha256-InMyDUEH135Y1RYJ3z1+RQxPMi7+QMf670S/S2ZL9vg=";
tag = finalAttrs.version;
hash = "sha256-PA4nbjg4ybWvZZ7wbsh+OR/wEEVm5qu5OfM9EO3HBYs=";
};
buildInputs = [ openssl ];
buildInputs = [
openssl
libpcap
];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
meta = {
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 ];
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ danielfullmer ];
mainProgram = "hcxdumptool";
};
}
})