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
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;
0
0
0
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
}