tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
webalizer: update meta data
Markus Kowalewski
7 years ago
4e8871e7
fc080c22
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
webalizer
default.nix
+7
-4
pkgs/tools/networking/webalizer/default.nix
···
11
11
preConfigure =
12
12
''
13
13
substituteInPlace ./configure \
14
14
-
--replace "--static" ""
14
14
+
--replace "--static" ""
15
15
'';
16
16
17
17
-
buildInputs = [zlib libpng gd geoip db];
17
17
+
buildInputs = [zlib libpng gd geoip db];
18
18
19
19
configureFlags = [
20
20
"--enable-dns"
···
23
23
"--enable-shared"
24
24
];
25
25
26
26
-
meta = {
27
27
-
platforms = stdenv.lib.platforms.unix;
26
26
+
meta = with stdenv.lib; {
27
27
+
description = "Web server log file analysis program";
28
28
+
homepage = http://www.webalizer.org;
29
29
+
platforms = platforms.unix;
30
30
+
license = licenses.gpl2;
28
31
};
29
32
}