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
{ lib, stdenv, fetchgit, python, libev, wafHook }:
0
2
stdenv.mkDerivation rec {
3
pname = "weighttp";
4
version = "0.4";
···
10
};
11
12
nativeBuildInputs = [ wafHook ];
0
13
buildInputs = [ python libev ];
14
15
-
meta = {
16
-
platforms = lib.platforms.unix;
17
homepage = "https://redmine.lighttpd.net/projects/weighttp/wiki";
18
-
description = "A lightweight and simple webserver benchmarking tool";
0
19
};
20
}
···
1
{ lib, stdenv, fetchgit, python, libev, wafHook }:
2
+
3
stdenv.mkDerivation rec {
4
pname = "weighttp";
5
version = "0.4";
···
11
};
12
13
nativeBuildInputs = [ wafHook ];
14
+
15
buildInputs = [ python libev ];
16
17
+
meta = with lib; {
18
+
description = "Lightweight and simple webserver benchmarking tool";
19
homepage = "https://redmine.lighttpd.net/projects/weighttp/wiki";
20
+
platforms = platforms.unix;
21
+
license = licenses.mit;
22
};
23
}