2013-02-04 10:45:47 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-12 17:37:46 +02:00
|
|
|
name = "fping-3.13";
|
2013-02-04 10:45:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.fping.org/dist/${name}.tar.gz";
|
2016-04-12 17:37:46 +02:00
|
|
|
sha256 = "082pis2c2ad6kkj35zmsf6xb2lm8v8hdrnjiwl529ldk3kyqxcjb";
|
2013-02-04 10:45:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://fping.org/";
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Send ICMP echo probes to network hosts";
|
2014-09-04 16:33:50 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2014-10-27 18:20:46 +01:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2013-02-04 10:45:47 +01:00
|
|
|
};
|
|
|
|
}
|