1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "fping-3.10";
5
6 src = fetchurl {
7 url = "http://www.fping.org/dist/${name}.tar.gz";
8 sha256 = "1n2psfxgww6wg5rz8rly06xkghgp8lshx2lx6rramrigyd1fhiyd";
9 };
10
11 meta = {
12 homepage = "http://fping.org/";
13 description = "Send ICMP echo probes to network hosts";
14 maintainers = with stdenv.lib.maintainers; [ the-kenny ];
15 platforms = with stdenv.lib.platforms; all;
16 };
17}