nixpkgs/pkgs/tools/misc/goaccess/default.nix

30 lines
997 B
Nix
Raw Normal View History

2021-04-24 04:20:00 +00:00
{ lib, stdenv, fetchurl, ncurses, gettext, openssl, withGeolocation ? true, libmaxminddb }:
2014-05-27 10:50:30 +00:00
stdenv.mkDerivation rec {
2021-04-24 04:20:00 +00:00
version = "1.4.6";
pname = "goaccess";
src = fetchurl {
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
2021-04-24 04:20:00 +00:00
sha256 = "1l3j3i4vb7ni7i047qvi9a3hs43ym24r6hfcnqsbhgrb731jf3qx";
};
2014-05-27 10:50:30 +00:00
configureFlags = [
"--enable-utf8"
2021-04-24 04:20:00 +00:00
"--with-openssl"
] ++ lib.optionals withGeolocation [ "--enable-geoip=mmdb" ];
2014-05-27 10:50:30 +00:00
2021-04-24 04:20:00 +00:00
buildInputs = [ ncurses openssl ]
++ lib.optionals withGeolocation [ libmaxminddb ]
++ lib.optionals stdenv.isDarwin [ gettext ];
2014-05-27 10:50:30 +00:00
meta = {
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
homepage = "https://goaccess.io";
2021-04-24 04:20:00 +00:00
changelog = "https://github.com/allinurl/goaccess/raw/v${version}/ChangeLog";
2021-01-15 09:19:50 +00:00
license = lib.licenses.mit;
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux ++ lib.platforms.darwin;
2021-01-15 09:19:50 +00:00
maintainers = with lib.maintainers; [ ederoyd46 ];
2014-05-27 10:50:30 +00:00
};
}