mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
32 lines
813 B
Nix
32 lines
813 B
Nix
{ stdenv, fetchurl, pkgconfig, ncurses, glib, libmaxminddb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.3";
|
|
pname = "goaccess";
|
|
|
|
src = fetchurl {
|
|
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
|
|
sha256 = "16vv3pj7pbraq173wlxa89jjsd279004j4kgzlrsk1dz4if5qxwc";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--enable-geoip=mmdb"
|
|
"--enable-utf8"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
libmaxminddb
|
|
ncurses
|
|
glib
|
|
];
|
|
|
|
meta = {
|
|
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
|
|
homepage = "https://goaccess.io";
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
maintainers = with stdenv.lib.maintainers; [ ederoyd46 ];
|
|
};
|
|
}
|