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