2021-04-24 05:20:00 +01:00
|
|
|
{ lib, stdenv, fetchurl, ncurses, gettext, openssl, withGeolocation ? true, libmaxminddb }:
|
2014-05-27 11:50:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-30 21:11:52 +01:00
|
|
|
version = "1.5.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "goaccess";
|
2016-06-10 03:33:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
|
2021-06-30 21:11:52 +01:00
|
|
|
sha256 = "sha256-iEF+eOYrcN45gLdiKRHk/NcZw2YPADyIeWjnGWw5lw8=";
|
2016-06-10 03:33:27 +01:00
|
|
|
};
|
2014-05-27 11:50:30 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-utf8"
|
2021-04-24 05:20:00 +01:00
|
|
|
"--with-openssl"
|
|
|
|
] ++ lib.optionals withGeolocation [ "--enable-geoip=mmdb" ];
|
2014-05-27 11:50:30 +01:00
|
|
|
|
2021-04-24 05:20:00 +01:00
|
|
|
buildInputs = [ ncurses openssl ]
|
|
|
|
++ lib.optionals withGeolocation [ libmaxminddb ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ gettext ];
|
2014-05-27 11:50:30 +01:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://goaccess.io";
|
2021-04-24 05:20:00 +01: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 11:50:30 +01:00
|
|
|
};
|
|
|
|
}
|