Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

webalizer: update meta data

+7 -4
+7 -4
pkgs/tools/networking/webalizer/default.nix
··· 11 preConfigure = 12 '' 13 substituteInPlace ./configure \ 14 - --replace "--static" "" 15 ''; 16 17 - buildInputs = [zlib libpng gd geoip db]; 18 19 configureFlags = [ 20 "--enable-dns" ··· 23 "--enable-shared" 24 ]; 25 26 - meta = { 27 - platforms = stdenv.lib.platforms.unix; 28 }; 29 }
··· 11 preConfigure = 12 '' 13 substituteInPlace ./configure \ 14 + --replace "--static" "" 15 ''; 16 17 + buildInputs = [zlib libpng gd geoip db]; 18 19 configureFlags = [ 20 "--enable-dns" ··· 23 "--enable-shared" 24 ]; 25 26 + meta = with stdenv.lib; { 27 + description = "Web server log file analysis program"; 28 + homepage = http://www.webalizer.org; 29 + platforms = platforms.unix; 30 + license = licenses.gpl2; 31 }; 32 }