32 lines
823 B
Nix
32 lines
823 B
Nix
{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.1";
|
|
name = "goaccess-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://tar.goaccess.io/goaccess-${version}.tar.gz";
|
|
sha256 = "1lxnhvh4xhkgzdv0l2fiza2099phn9zs04p9cqfhhl5k6xq18wsc";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--enable-geoip"
|
|
"--enable-utf8"
|
|
];
|
|
|
|
buildInputs = [
|
|
pkgconfig
|
|
geoipWithDatabase
|
|
ncurses
|
|
glib
|
|
];
|
|
|
|
meta = {
|
|
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
|
|
homepage = http://goaccess.prosoftcorp.com;
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
maintainers = with stdenv.lib.maintainers; [ ederoyd46 garbas ];
|
|
};
|
|
}
|