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

18 lines
445 B
Nix
Raw Normal View History

2013-02-04 09:45:47 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-04-12 15:37:46 +00:00
name = "fping-3.13";
2013-02-04 09:45:47 +00:00
src = fetchurl {
url = "http://www.fping.org/dist/${name}.tar.gz";
2016-04-12 15:37:46 +00:00
sha256 = "082pis2c2ad6kkj35zmsf6xb2lm8v8hdrnjiwl529ldk3kyqxcjb";
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
};
}