nixpkgs/pkgs/tools/networking/arping/default.nix
2024-02-11 03:19:15 +01:00

38 lines
739 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, libnet
, libpcap
}:
stdenv.mkDerivation rec {
pname = "arping";
version = "2.24";
src = fetchFromGitHub {
owner = "ThomasHabets";
repo = pname;
rev = "${pname}-${version}";
hash = "sha256-rME4IDzwYHOURbyuG7G5gnXvUIVoQH2WIeLWacHyoBA=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
libnet
libpcap
];
meta = with lib; {
description = "Broadcasts a who-has ARP packet on the network and prints answers";
homepage = "https://github.com/ThomasHabets/arping";
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ michalrus ];
platforms = platforms.unix;
mainProgram = "arping";
};
}