Merge pull request #15038 from joachifm/fix-siege

siege: fix build after multiple-outputs
This commit is contained in:
Joachim Fasting 2016-04-28 16:40:10 +02:00
commit 44acb6833b

View File

@ -10,7 +10,9 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
configureFlags = [ "--with-ssl=${openssl}" ];
buildInputs = [ openssl ];
configureFlags = [ "--with-ssl=${openssl.dev}" ];
meta = with stdenv.lib; {
description = "HTTP load tester";