nixpkgs/pkgs/tools/networking/fping/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

20 lines
500 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fping-4.0";
src = fetchurl {
url = "https://www.fping.org/dist/${name}.tar.gz";
sha256 = "1kp81wchi79l8z8rrj602fpjrd8bi84y3i7fsaclzlwap5943sv7";
};
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
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;
};
}