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

20 lines
469 B
Nix
Raw Normal View History

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