gatling: Init at 0.13.
This commit is contained in:
parent
4b22a42a2f
commit
af73b4cc2e
2 changed files with 34 additions and 0 deletions
32
pkgs/servers/http/gatling/default.nix
Normal file
32
pkgs/servers/http/gatling/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, fetchurl, libowfat, zlib, openssl, polarssl }:
|
||||
|
||||
let
|
||||
version = "0.13";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gatling-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dl.fefe.de/${name}.tar.bz2";
|
||||
sha256 = "0icjx20ws8gqxgpm77dx7p9zcwi1fv162in6igx04rmnyzyla8dl";
|
||||
};
|
||||
|
||||
buildInputs = [ libowfat zlib openssl polarssl ];
|
||||
|
||||
configurePhase = ''
|
||||
substituteInPlace Makefile --replace "/usr/local" "$out"
|
||||
substituteInPlace GNUmakefile --replace "/opt/diet" "$out"
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
make gatling
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A high performance web server";
|
||||
homepage = http://www.fefe.de/gatling/;
|
||||
license = stdenv.lib.licenses.gplv2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.the-kenny ];
|
||||
};
|
||||
}
|
|
@ -9104,6 +9104,8 @@ let
|
|||
|
||||
freeswitch = callPackage ../servers/sip/freeswitch { };
|
||||
|
||||
gatling = callPackage ../servers/http/gatling { };
|
||||
|
||||
groovebasin = callPackage ../applications/audio/groovebasin { };
|
||||
|
||||
hbase = callPackage ../servers/hbase {};
|
||||
|
|
Loading…
Reference in a new issue