2015-11-08 03:34:19 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }:
|
2014-05-27 11:50:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-12-19 18:30:36 +00:00
|
|
|
version = "1.1.1";
|
2014-05-27 11:50:30 +01:00
|
|
|
name = "goaccess-${version}";
|
2016-06-10 03:33:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://tar.goaccess.io/goaccess-${version}.tar.gz";
|
2016-12-19 18:30:36 +00:00
|
|
|
sha256 = "1lxnhvh4xhkgzdv0l2fiza2099phn9zs04p9cqfhhl5k6xq18wsc";
|
2016-06-10 03:33:27 +01:00
|
|
|
};
|
2014-05-27 11:50:30 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-geoip"
|
|
|
|
"--enable-utf8"
|
|
|
|
];
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-03-28 08:55:52 +00:00
|
|
|
buildInputs = [
|
2015-11-08 03:34:19 +00:00
|
|
|
geoipWithDatabase
|
2014-05-27 11:50:30 +01:00
|
|
|
ncurses
|
|
|
|
glib
|
|
|
|
];
|
|
|
|
|
|
|
|
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";
|
2014-05-27 11:50:30 +01:00
|
|
|
homepage = http://goaccess.prosoftcorp.com;
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2016-06-10 03:33:27 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ederoyd46 garbas ];
|
2014-05-27 11:50:30 +01:00
|
|
|
};
|
|
|
|
}
|