mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
573 B
Nix
21 lines
573 B
Nix
{ stdenv, fetchgit, python, libev, wafHook }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "weighttp";
|
|
version = "0.4";
|
|
|
|
src = fetchgit {
|
|
url = https://git.lighttpd.net/weighttp.git;
|
|
rev = "refs/tags/weighttp-${version}";
|
|
sha256 = "14yjmdx9p8g8c3zlrx5qid8k156lsagfwhl3ny54162nxjf7kzgr";
|
|
};
|
|
|
|
nativeBuildInputs = [ wafHook ];
|
|
buildInputs = [ python libev ];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
homepage = https://redmine.lighttpd.net/projects/weighttp/wiki;
|
|
description = "A lightweight and simple webserver benchmarking tool";
|
|
};
|
|
}
|