nixpkgs/pkgs/tools/misc/goaccess/default.nix

32 lines
826 B
Nix
Raw Normal View History

2015-11-08 04:34:19 +01:00
{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }:
2014-05-27 12:50:30 +02:00
stdenv.mkDerivation rec {
version = "1.3";
2014-05-27 12:50:30 +02:00
name = "goaccess-${version}";
src = fetchurl {
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
sha256 = "16vv3pj7pbraq173wlxa89jjsd279004j4kgzlrsk1dz4if5qxwc";
};
2014-05-27 12:50:30 +02:00
configureFlags = [
"--enable-geoip"
"--enable-utf8"
];
nativeBuildInputs = [ pkgconfig ];
2015-03-28 09:55:52 +01:00
buildInputs = [
2015-11-08 04:34:19 +01:00
geoipWithDatabase
2014-05-27 12:50:30 +02:00
ncurses
glib
];
meta = {
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
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;
maintainers = with stdenv.lib.maintainers; [ ederoyd46 ];
2014-05-27 12:50:30 +02:00
};
}