push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
{
lib,
stdenv,
fetchurl,
zlib,
libpng,
gd,
geoip,
db,
}:
stdenv.mkDerivation rec {
pname = "webalizer";
version = "2.23.08";
src = fetchurl {
url = "mirror://debian/pool/main/w/webalizer/webalizer_${version}.orig.tar.gz";
sha256 = "sha256-7a3bWqQcxKCBoVAOP6lmFdS0G8Eghrzt+ZOAGM557Y0=";
};
# Workaround build failure on -fno-common toolchains:
# ld: dns_resolv.o:(.bss+0x20): multiple definition of `system_info'; webalizer.o:(.bss+0x76e0): first defined here
env.NIX_CFLAGS_COMPILE = "-fcommon";
installFlags = [ "MANDIR=\${out}/share/man/man1" ];
preConfigure = ''
substituteInPlace ./configure \
--replace "--static" ""
'';
buildInputs = [
zlib
libpng
gd
geoip
db
];
configureFlags = [
"--enable-dns"
"--enable-geoip"
"--enable-shared"
];
meta = with lib; {
description = "Web server log file analysis program";
homepage = "https://webalizer.net/";
platforms = platforms.unix;
license = licenses.gpl2Plus;
};
}