1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/fping/default.nix
2016-05-03 16:15:20 +02:00

18 lines
445 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fping-3.13";
src = fetchurl {
url = "http://www.fping.org/dist/${name}.tar.gz";
sha256 = "082pis2c2ad6kkj35zmsf6xb2lm8v8hdrnjiwl529ldk3kyqxcjb";
};
meta = {
homepage = "http://fping.org/";
description = "Send ICMP echo probes to network hosts";
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
platforms = with stdenv.lib.platforms; all;
};
}