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

20 lines
469 B
Nix
Raw Normal View History

2013-02-04 13:45:47 +04:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fping-4.2";
2013-02-04 13:45:47 +04:00
src = fetchurl {
url = "https://www.fping.org/dist/${name}.tar.gz";
sha256 = "0jmnf4vmr43aiwk3h2b5qdsb95gxar8gz1yli8fswnm9nrs9ccvx";
2013-02-04 13:45:47 +04:00
};
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
2018-08-20 01:27:04 +03:00
meta = with stdenv.lib; {
homepage = "http://fping.org/";
description = "Send ICMP echo probes to network hosts";
2018-08-20 01:27:04 +03:00
license = licenses.bsd0;
platforms = platforms.all;
2013-02-04 13:45:47 +04:00
};
}