nixpkgs/pkgs/tools/networking/fping/default.nix
R. RyanTM 6347dee4b9 fping: 4.1 -> 4.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fping/versions
2019-03-21 15:16:16 -07:00

21 lines
518 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fping-4.2";
src = fetchurl {
url = "https://www.fping.org/dist/${name}.tar.gz";
sha256 = "0jmnf4vmr43aiwk3h2b5qdsb95gxar8gz1yli8fswnm9nrs9ccvx";
};
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
meta = with stdenv.lib; {
homepage = http://fping.org/;
description = "Send ICMP echo probes to network hosts";
maintainers = with maintainers; [ the-kenny ];
license = licenses.bsd0;
platforms = platforms.all;
};
}