webalizer: update meta data

This commit is contained in:
Markus Kowalewski 2018-09-10 21:55:44 +02:00
parent fc080c22f8
commit 4e8871e7b4
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -11,10 +11,10 @@ stdenv.mkDerivation {
preConfigure = preConfigure =
'' ''
substituteInPlace ./configure \ substituteInPlace ./configure \
--replace "--static" "" --replace "--static" ""
''; '';
buildInputs = [zlib libpng gd geoip db]; buildInputs = [zlib libpng gd geoip db];
configureFlags = [ configureFlags = [
"--enable-dns" "--enable-dns"
@ -23,7 +23,10 @@ stdenv.mkDerivation {
"--enable-shared" "--enable-shared"
]; ];
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.unix; description = "Web server log file analysis program";
homepage = http://www.webalizer.org;
platforms = platforms.unix;
license = licenses.gpl2;
}; };
} }