cedffe1677
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 4.0 with grep in /nix/store/mcwq9l7zxi30ksdmlfj5vlcw98dv08ny-fping-4.0 - found 4.0 in filename of file in /nix/store/mcwq9l7zxi30ksdmlfj5vlcw98dv08ny-fping-4.0
20 lines
499 B
Nix
20 lines
499 B
Nix
{ 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;
|
|
};
|
|
}
|