nixpkgs/pkgs/tools/networking/fping/default.nix

16 lines
334 B
Nix
Raw Normal View History

2013-02-04 09:45:47 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2013-12-11 07:57:03 +00:00
name = "fping-3.8";
2013-02-04 09:45:47 +00:00
src = fetchurl {
url = "http://www.fping.org/dist/${name}.tar.gz";
2013-12-11 07:57:03 +00:00
sha256 = "04iwj4x3wns09wp777mb3kwfi7ypb4m9m73p0s2y699px77hcx67";
2013-02-04 09:45:47 +00:00
};
meta = {
homepage = "http://fping.org/";
description = "Send ICMP echo probes to network hosts";
2013-02-04 09:45:47 +00:00
};
}