python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / goaccess / default.nix
blobe8261182ca4630c63292b3bf05dd1a905c4dbd8e
1 { lib
2 , stdenv
3 , autoreconfHook
4 , fetchFromGitHub
5 , gettext
6 , libmaxminddb
7 , ncurses
8 , openssl
9 , withGeolocation ? true
12 stdenv.mkDerivation rec {
13   version = "1.6.5";
14   pname = "goaccess";
16   src = fetchFromGitHub {
17     owner = "allinurl";
18     repo = pname;
19     rev = "v${version}";
20     sha256 = "sha256-ZXWlFg0h0PvUqX5+kR/TAkH3GvL9pHRrKueBGqx5MCY=";
21   };
23   nativeBuildInputs = [
24     autoreconfHook
25   ];
27   buildInputs = [
28     ncurses
29     openssl
30   ] ++ lib.optionals withGeolocation [
31     libmaxminddb
32   ] ++ lib.optionals stdenv.isDarwin [
33     gettext
34   ];
36   configureFlags = [
37     "--enable-utf8"
38     "--with-openssl"
39   ] ++ lib.optionals withGeolocation [
40     "--enable-geoip=mmdb"
41   ];
43   meta = with lib; {
44     description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
45     homepage = "https://goaccess.io";
46     changelog = "https://github.com/allinurl/goaccess/raw/v${version}/ChangeLog";
47     license = licenses.mit;
48     maintainers = with maintainers; [ ederoyd46 ];
49     platforms = platforms.linux ++ platforms.darwin;
50   };