nixpkgs/pkgs/tools/networking/fping/default.nix
Jörg Thalheim 887295fd2d
treewide: remove the-kenny from maintainers
@the-kenny did a good job in the past and is set as maintainer in many package,
however since 2017-2018 he stopped contributing. To create less confusion
in pull requests when people try to request his feedback, I removed him as
maintainer from all packages.
2020-05-09 10:28:57 +01:00

20 lines
469 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fping-4.2";
src = fetchurl {
url = "https://www.fping.org/dist/${name}.tar.gz";
sha256 = "0jmnf4vmr43aiwk3h2b5qdsb95gxar8gz1yli8fswnm9nrs9ccvx";
};
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
meta = with stdenv.lib; {
homepage = "http://fping.org/";
description = "Send ICMP echo probes to network hosts";
license = licenses.bsd0;
platforms = platforms.all;
};
}