2013-02-04 01:45:47 -08:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-31 21:55:27 -07:00
|
|
|
name = "fping-4.4";
|
2013-02-04 01:45:47 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://www.fping.org/dist/${name}.tar.gz";
|
2020-07-31 21:55:27 -07:00
|
|
|
sha256 = "049dnyr6d869kwrnfhkj3afifs3219fy6hv7kmsb3irdlmjlp1cz";
|
2013-02-04 01:45:47 -08:00
|
|
|
};
|
|
|
|
|
2017-01-17 02:54:03 -08:00
|
|
|
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
|
|
|
|
|
2018-08-19 15:27:04 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://fping.org/";
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Send ICMP echo probes to network hosts";
|
2018-08-19 15:27:04 -07:00
|
|
|
license = licenses.bsd0;
|
|
|
|
platforms = platforms.all;
|
2013-02-04 01:45:47 -08:00
|
|
|
};
|
|
|
|
}
|