mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 23:52:33 +00:00
26 lines
630 B
Nix
26 lines
630 B
Nix
{ stdenv, lib, fetchFromGitHub, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hcxdumptool";
|
|
version = "6.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ZerBea";
|
|
repo = "hcxdumptool";
|
|
rev = version;
|
|
sha256 = "0y73a5p23rg4zx6vkgpq1p3j2dzqcvzwn1ymswfkqm5zihbi17d7";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|