summary refs log tree commit diff
path: root/pkgs/tools/networking/fping/default.nix
blob: b76b32ec4c8aa90724d6a10b14ceeee81b368fb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "fping-4.0";

  src = fetchurl {
    url = "http://www.fping.org/dist/${name}.tar.gz";
    sha256 = "1kp81wchi79l8z8rrj602fpjrd8bi84y3i7fsaclzlwap5943sv7";
  };

  configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];

  meta = {
    homepage = http://fping.org/;
    description = "Send ICMP echo probes to network hosts";
    maintainers = with stdenv.lib.maintainers; [ the-kenny ];
    platforms = with stdenv.lib.platforms; all;
  };
}