2016-04-28 15:43:30 +01:00
|
|
|
{ stdenv, fetchurl, openssl, zlib }:
|
2014-02-02 14:04:46 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-12 06:27:41 +01:00
|
|
|
name = "siege-4.0.2";
|
2014-02-02 14:04:46 +00:00
|
|
|
|
2014-01-11 22:27:49 +00:00
|
|
|
src = fetchurl {
|
2014-11-05 07:53:59 +00:00
|
|
|
url = "http://download.joedog.org/siege/${name}.tar.gz";
|
2016-07-12 06:27:41 +01:00
|
|
|
sha256 = "0ivc6ah9n2888qgh8dicszhr3mjs42538lfx7dlhxvvvakwq3yvy";
|
2014-01-20 11:58:22 +00:00
|
|
|
};
|
2014-02-02 14:04:46 +00:00
|
|
|
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
|
|
|
|
2016-04-28 15:43:30 +01:00
|
|
|
buildInputs = [ openssl zlib ];
|
2016-04-27 18:22:47 +01:00
|
|
|
|
2016-04-28 15:43:30 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=${openssl.dev}"
|
|
|
|
"--with-zlib=${zlib.dev}"
|
|
|
|
];
|
2014-07-11 15:09:52 +01:00
|
|
|
|
2014-02-02 14:04:46 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-01-20 11:58:22 +00:00
|
|
|
description = "HTTP load tester";
|
2014-02-02 14:04:46 +00:00
|
|
|
maintainers = with maintainers; [ ocharles raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2Plus;
|
2014-01-11 22:27:49 +00:00
|
|
|
};
|
|
|
|
}
|