2013-02-04 10:45:47 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-21 23:16:16 +01:00
|
|
|
name = "fping-4.2";
|
2013-02-04 10:45:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.fping.org/dist/${name}.tar.gz";
|
2019-03-21 23:16:16 +01:00
|
|
|
sha256 = "0jmnf4vmr43aiwk3h2b5qdsb95gxar8gz1yli8fswnm9nrs9ccvx";
|
2013-02-04 10:45:47 +01:00
|
|
|
};
|
|
|
|
|
2017-01-17 11:54:03 +01:00
|
|
|
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
|
|
|
|
|
2018-08-20 00:27:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://fping.org/;
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Send ICMP echo probes to network hosts";
|
2018-08-20 00:27:04 +02:00
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
|
|
|
license = licenses.bsd0;
|
|
|
|
platforms = platforms.all;
|
2013-02-04 10:45:47 +01:00
|
|
|
};
|
|
|
|
}
|