depot/pkgs/tools/networking/fping/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

30 lines
658 B
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "fping";
version = "5.2";
src = fetchurl {
url = "https://www.fping.org/dist/fping-${version}.tar.gz";
hash = "sha256-p2ktENc/sLt24fdFmqfxm7zb/Frb7e8C9GiXSxiw5C8=";
};
configureFlags = [
"--enable-ipv6"
"--enable-ipv4"
];
meta = with lib; {
description = "Send ICMP echo probes to network hosts";
homepage = "http://fping.org/";
changelog = "https://github.com/schweikert/fping/releases/tag/v${version}";
license = licenses.bsd0;
mainProgram = "fping";
maintainers = with maintainers; [ fab ];
platforms = platforms.all;
};
}