about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@users.noreply.github.com>2016-04-28 16:40:10 +0200
committerJoachim Fasting <joachifm@users.noreply.github.com>2016-04-28 16:40:10 +0200
commit44acb6833bfdac83495131f2bc5e7d3103a46863 (patch)
tree7a190ddb212e56faef61d134a48e3aed08f39929
parentc4440c9c744744198f423dfa69cf4d19399ced4c (diff)
parent1bf1ba1f8866a7910c9df8dde791a0dffda6fed2 (diff)
Merge pull request #15038 from joachifm/fix-siege
siege: fix build after multiple-outputs
-rw-r--r--pkgs/tools/networking/siege/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/networking/siege/default.nix b/pkgs/tools/networking/siege/default.nix
index 48e2fc5ef7879..976d8b3bc0676 100644
--- a/pkgs/tools/networking/siege/default.nix
+++ b/pkgs/tools/networking/siege/default.nix
@@ -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";