2019-09-23 20:19:50 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, ncurses, glib, libmaxminddb }:
|
2014-05-27 12:50:30 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-16 06:12:24 +01:00
|
|
|
version = "1.3";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "goaccess";
|
2016-06-10 04:33:27 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
|
2018-12-16 06:12:24 +01:00
|
|
|
sha256 = "16vv3pj7pbraq173wlxa89jjsd279004j4kgzlrsk1dz4if5qxwc";
|
2016-06-10 04:33:27 +02:00
|
|
|
};
|
2014-05-27 12:50:30 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
2019-09-23 20:19:50 +02:00
|
|
|
"--enable-geoip=mmdb"
|
2014-05-27 12:50:30 +02:00
|
|
|
"--enable-utf8"
|
|
|
|
];
|
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-03-28 09:55:52 +01:00
|
|
|
buildInputs = [
|
2019-09-23 20:19:50 +02:00
|
|
|
libmaxminddb
|
2014-05-27 12:50:30 +02:00
|
|
|
ncurses
|
|
|
|
glib
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://goaccess.io";
|
2014-05-27 12:50:30 +02:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2019-07-03 11:27:39 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ederoyd46 ];
|
2014-05-27 12:50:30 +02:00
|
|
|
};
|
|
|
|
}
|