nixpkgs/pkgs/tools/networking/siege/default.nix

31 lines
732 B
Nix
Raw Normal View History

2016-04-28 07:43:30 -07:00
{ stdenv, fetchurl, openssl, zlib }:
2014-02-02 06:04:46 -08:00
stdenv.mkDerivation rec {
2020-07-14 19:16:58 -07:00
name = "siege-4.0.6";
2014-02-02 06:04:46 -08:00
2014-01-11 14:27:49 -08:00
src = fetchurl {
2014-11-04 23:53:59 -08:00
url = "http://download.joedog.org/siege/${name}.tar.gz";
2020-07-14 19:16:58 -07:00
sha256 = "03w0iska74nb6r8wnljn7inasbq7qflf55vjmxnb9jrc4pi7mpnw";
};
2014-02-02 06:04:46 -08:00
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
2016-04-28 07:43:30 -07:00
buildInputs = [ openssl zlib ];
2017-09-22 12:32:33 -07:00
prePatch = ''
sed -i -e 's/u_int32_t/uint32_t/g' -e '1i#include <stdint.h>' src/hash.c
'';
2016-04-28 07:43:30 -07:00
configureFlags = [
"--with-ssl=${openssl.dev}"
"--with-zlib=${zlib.dev}"
];
2014-07-11 07:09:52 -07:00
2014-02-02 06:04:46 -08:00
meta = with stdenv.lib; {
description = "HTTP load tester";
2014-02-02 06:04:46 -08:00
maintainers = with maintainers; [ ocharles raskin ];
platforms = platforms.unix;
2014-02-02 06:04:46 -08:00
license = licenses.gpl2Plus;
2014-01-11 14:27:49 -08:00
};
}