3
0
Fork 0
forked from mirrors/nixpkgs

siege: Build with OpenSSL

This commit is contained in:
Oliver Charles 2014-07-11 15:09:52 +01:00
parent e50b705e12
commit 7c90aab92a

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "siege-3.0.6";
@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
configureFlags = [ "--with-ssl=${openssl}" ];
meta = with stdenv.lib; {
description = "HTTP load tester";
maintainers = with maintainers; [ ocharles raskin ];