nixpkgs/pkgs/tools/networking/fping/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

20 lines
512 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fping-3.16";
src = fetchurl {
url = "http://www.fping.org/dist/${name}.tar.gz";
sha256 = "2f753094e4df3cdb1d99be1687c0fb7d2f14c0d526ebf03158c8c5519bc78f54";
};
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;
};
}