nixpkgs/pkgs/tools/networking/arping/default.nix

26 lines
683 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libnet, libpcap }:
2018-02-18 13:10:53 +00:00
stdenv.mkDerivation rec {
2020-03-10 14:44:43 +00:00
version = "2.21";
pname = "arping";
2018-02-18 13:10:53 +00:00
buildInputs = [ libnet libpcap ];
src = fetchFromGitHub {
owner = "ThomasHabets";
repo = pname;
rev = "${pname}-${version}";
2020-03-10 14:44:43 +00:00
sha256 = "1i7rjn863bnq51ahbvypm1bkzhyshlm5b32yzdd9iaqyz7sa7pa7";
2018-02-18 13:10:53 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
2018-02-18 13:10:53 +00:00
description = "Broadcasts a who-has ARP packet on the network and prints answers";
2020-03-10 14:44:43 +00:00
homepage = "https://github.com/ThomasHabets/arping";
2018-02-18 13:10:53 +00:00
license = with licenses; [ gpl2 ];
maintainers = [ maintainers.michalrus ];
platforms = platforms.unix;
};
}