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