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

32 lines
846 B
Nix
Raw Normal View History

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}";
src = fetchurl {
url = "http://tar.goaccess.io/goaccess-${version}.tar.gz";
2016-12-19 18:30:36 +00:00
sha256 = "1lxnhvh4xhkgzdv0l2fiza2099phn9zs04p9cqfhhl5k6xq18wsc";
};
2014-05-27 11:50:30 +01:00
configureFlags = [
"--enable-geoip"
"--enable-utf8"
];
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 = {
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;
maintainers = with stdenv.lib.maintainers; [ ederoyd46 garbas ];
2014-05-27 11:50:30 +01:00
};
}