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