3
0
Fork 0
forked from mirrors/nixpkgs

Add fping, a more scriptable ping

This commit is contained in:
Rickard Nilsson 2013-02-04 10:45:47 +01:00
parent a6ada4b3f9
commit 789154b119
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fping-3.4";
src = fetchurl {
url = "http://www.fping.org/dist/${name}.tar.gz";
sha256 = "1zkawlk6lcqw6nakqnl3v0x1cwnxrx2lmg9q6j76mw9i96pjh9fl";
};
meta = {
homepage = "http://fping.org/";
description = "A program to send ICMP echo probes to network hosts.";
};
}

View file

@ -759,6 +759,8 @@ let
fox = callPackage ../development/libraries/fox/default.nix { };
fox_1_6 = callPackage ../development/libraries/fox/fox-1.6.nix { };
fping = callPackage ../tools/networking/fping {};
fprot = callPackage ../tools/security/fprot { };
freeipmi = callPackage ../tools/system/freeipmi {};