6347dee4b9
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
21 lines
518 B
Nix
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;
|
|
};
|
|
}
|