tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
weighttp: add license
Fabian Affolter
5 years ago
1ac604ec
6f0de2b0
+6
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
weighttp
default.nix
+6
-3
pkgs/tools/networking/weighttp/default.nix
···
1
1
{ lib, stdenv, fetchgit, python, libev, wafHook }:
2
2
+
2
3
stdenv.mkDerivation rec {
3
4
pname = "weighttp";
4
5
version = "0.4";
···
10
11
};
11
12
12
13
nativeBuildInputs = [ wafHook ];
14
14
+
13
15
buildInputs = [ python libev ];
14
16
15
15
-
meta = {
16
16
-
platforms = lib.platforms.unix;
17
17
+
meta = with lib; {
18
18
+
description = "Lightweight and simple webserver benchmarking tool";
17
19
homepage = "https://redmine.lighttpd.net/projects/weighttp/wiki";
18
18
-
description = "A lightweight and simple webserver benchmarking tool";
20
20
+
platforms = platforms.unix;
21
21
+
license = licenses.mit;
19
22
};
20
23
}