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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
711 B
Nix
Raw Normal View History

2022-03-08 09:55:15 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, libnet
, libpcap
}:
2018-02-18 13:10:53 +00:00
stdenv.mkDerivation rec {
pname = "arping";
2022-03-08 09:55:15 +00:00
version = "2.23";
2018-02-18 13:10:53 +00:00
src = fetchFromGitHub {
owner = "ThomasHabets";
repo = pname;
rev = "${pname}-${version}";
2022-03-08 09:55:15 +00:00
hash = "sha256-Yn0EFb23VJvcVluQhwGHg9cdnZ8LKlBEds7cq8Irftc=";
2018-02-18 13:10:53 +00:00
};
2022-03-08 09:55:15 +00:00
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
libnet
libpcap
];
2018-02-18 13:10:53 +00:00
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";
2022-03-08 09:55:15 +00:00
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ michalrus ];
2018-02-18 13:10:53 +00:00
platforms = platforms.unix;
};
}