3
0
Fork 0
forked from mirrors/nixpkgs

goaccess: 1.5.2 -> 1.5.3

This commit is contained in:
Fabian Affolter 2021-12-03 11:53:29 +01:00
parent 7fff1e9c0c
commit c2976dee91

View file

@ -1,29 +1,51 @@
{ lib, stdenv, fetchurl, ncurses, gettext, openssl, withGeolocation ? true, libmaxminddb }:
{ lib
, stdenv
, autoreconfHook
, fetchFromGitHub
, gettext
, libmaxminddb
, ncurses
, openssl
, withGeolocation ? true
}:
stdenv.mkDerivation rec {
version = "1.5.2";
version = "1.5.3";
pname = "goaccess";
src = fetchurl {
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
sha256 = "sha256-oM4vk5OyYiSE5GnpWoCd/VKt5NQgBJHkPt4fy1KrHIo=";
src = fetchFromGitHub {
owner = "allinurl";
repo = pname;
rev = "v${version}";
sha256 = "sha256-TgreyBlV86K6P0W9WeLUW6RbcHpuOFW2fj2cCe7nWHE=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
ncurses
openssl
] ++ lib.optionals withGeolocation [
libmaxminddb
] ++ lib.optionals stdenv.isDarwin [
gettext
];
configureFlags = [
"--enable-utf8"
"--with-openssl"
] ++ lib.optionals withGeolocation [ "--enable-geoip=mmdb" ];
] ++ lib.optionals withGeolocation [
"--enable-geoip=mmdb"
];
buildInputs = [ ncurses openssl ]
++ lib.optionals withGeolocation [ libmaxminddb ]
++ lib.optionals stdenv.isDarwin [ gettext ];
meta = {
meta = with lib; {
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
homepage = "https://goaccess.io";
changelog = "https://github.com/allinurl/goaccess/raw/v${version}/ChangeLog";
license = lib.licenses.mit;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ ederoyd46 ];
license = licenses.mit;
maintainers = with maintainers; [ ederoyd46 ];
platforms = platforms.linux ++ platforms.darwin;
};
}