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

20 lines
514 B
Nix
Raw Normal View History

2013-02-04 04:45:47 -05:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-02-17 14:38:17 -05:00
name = "fping-3.16";
2013-02-04 04:45:47 -05:00
src = fetchurl {
url = "http://www.fping.org/dist/${name}.tar.gz";
2017-02-17 14:38:17 -05:00
sha256 = "2f753094e4df3cdb1d99be1687c0fb7d2f14c0d526ebf03158c8c5519bc78f54";
2013-02-04 04:45:47 -05:00
};
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
2013-02-04 04:45:47 -05:00
meta = {
homepage = "http://fping.org/";
description = "Send ICMP echo probes to network hosts";
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
2014-10-27 13:20:46 -04:00
platforms = with stdenv.lib.platforms; all;
2013-02-04 04:45:47 -05:00
};
}