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-10-02 19:51:51 +00:00
|
|
|
version = "1.5.2";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "goaccess";
|
2016-06-10 02:33:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
|
2021-10-02 19:51:51 +00:00
|
|
|
sha256 = "sha256-oM4vk5OyYiSE5GnpWoCd/VKt5NQgBJHkPt4fy1KrHIo=";
|
2016-06-10 02:33:27 +00:00
|
|
|
};
|
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 = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
|
2020-04-01 01:11:51 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|