0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

goaccess: 1.9.3 -> 1.9.4

This commit is contained in:
R. Ryantm 2025-04-01 12:33:46 +00:00 committed by Weijia Wang
parent 896d3df5c1
commit 6699a10bc2

View file

@ -12,13 +12,13 @@
stdenv.mkDerivation rec {
pname = "goaccess";
version = "1.9.3";
version = "1.9.4";
src = fetchFromGitHub {
owner = "allinurl";
repo = "goaccess";
tag = "v${version}";
hash = "sha256-ZOngDAHA88YQvkx2pk5ZSpBzxqelvCIR4z5hiFmfGyc=";
hash = "sha256-KevxuZuIrMybNlPZgVDLO0zQe4LfAKxfVBbHnyTUC/o=";
};
nativeBuildInputs = [ autoreconfHook ];
@ -36,6 +36,12 @@ stdenv.mkDerivation rec {
"--with-openssl"
] ++ lib.optionals withGeolocation [ "--enable-geoip=mmdb" ];
env.NIX_CFLAGS_COMPILE = toString (
lib.optionals stdenv.hostPlatform.isDarwin [
"-DHOST_NAME_MAX=_POSIX_HOST_NAME_MAX"
]
);
meta = with lib; {
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
homepage = "https://goaccess.io";