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

20 lines
502 B
Nix
Raw Normal View History

2013-02-04 09:45:47 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-01-17 10:55:09 +00:00
name = "fping-3.15";
2013-02-04 09:45:47 +00:00
src = fetchurl {
url = "http://www.fping.org/dist/${name}.tar.gz";
2017-01-17 10:55:09 +00:00
sha256 = "072jhm9wpz1bvwnwgvz24ijw0xwwnn3z3zan4mgr5s5y6ml8z54n";
2013-02-04 09:45:47 +00:00
};
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
2013-02-04 09:45:47 +00:00
meta = {
homepage = "http://fping.org/";
description = "Send ICMP echo probes to network hosts";
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
2014-10-27 17:20:46 +00:00
platforms = with stdenv.lib.platforms; all;
2013-02-04 09:45:47 +00:00
};
}