summary refs log tree commit diff
path: root/pkgs/tools/networking/siege
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-04-27 19:22:47 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-04-27 19:22:47 +0200
commit1bf1ba1f8866a7910c9df8dde791a0dffda6fed2 (patch)
tree64562b89fd0195712741deda7c3697a16ddef643 /pkgs/tools/networking/siege
parenta2b07130302d747aa70d8ffd1bd9bd367292ec9b (diff)
downloadnixpkgs-1bf1ba1f8866a7910c9df8dde791a0dffda6fed2.tar
nixpkgs-1bf1ba1f8866a7910c9df8dde791a0dffda6fed2.tar.gz
nixpkgs-1bf1ba1f8866a7910c9df8dde791a0dffda6fed2.tar.bz2
nixpkgs-1bf1ba1f8866a7910c9df8dde791a0dffda6fed2.tar.lz
nixpkgs-1bf1ba1f8866a7910c9df8dde791a0dffda6fed2.tar.xz
nixpkgs-1bf1ba1f8866a7910c9df8dde791a0dffda6fed2.tar.zst
nixpkgs-1bf1ba1f8866a7910c9df8dde791a0dffda6fed2.zip
siege: fix build after multiple-outputs
Diffstat (limited to 'pkgs/tools/networking/siege')
-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 48e2fc5ef78..976d8b3bc06 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";