2013-02-04 09:45:47 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-04 15:18:11 +01:00
|
|
|
name = "fping-3.10";
|
2013-02-04 09:45:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.fping.org/dist/${name}.tar.gz";
|
2014-09-04 15:18:11 +01:00
|
|
|
sha256 = "1n2psfxgww6wg5rz8rly06xkghgp8lshx2lx6rramrigyd1fhiyd";
|
2013-02-04 09:45:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://fping.org/";
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Send ICMP echo probes to network hosts";
|
2014-09-04 15:33:50 +01: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
|
|
|
};
|
|
|
|
}
|