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

27 lines
633 B
Nix
Raw Normal View History

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