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:
parent
896d3df5c1
commit
6699a10bc2
1 changed files with 8 additions and 2 deletions
|
@ -12,13 +12,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "goaccess";
|
pname = "goaccess";
|
||||||
version = "1.9.3";
|
version = "1.9.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "allinurl";
|
owner = "allinurl";
|
||||||
repo = "goaccess";
|
repo = "goaccess";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-ZOngDAHA88YQvkx2pk5ZSpBzxqelvCIR4z5hiFmfGyc=";
|
hash = "sha256-KevxuZuIrMybNlPZgVDLO0zQe4LfAKxfVBbHnyTUC/o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
@ -36,6 +36,12 @@ stdenv.mkDerivation rec {
|
||||||
"--with-openssl"
|
"--with-openssl"
|
||||||
] ++ lib.optionals withGeolocation [ "--enable-geoip=mmdb" ];
|
] ++ 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; {
|
meta = with lib; {
|
||||||
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
|
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
|
||||||
homepage = "https://goaccess.io";
|
homepage = "https://goaccess.io";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue