Merge pull request #15038 from joachifm/fix-siege

siege: fix build after multiple-outputs

+3 -1
+3 -1
pkgs/tools/networking/siege/default.nix
··· 10 10 11 11 NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; 12 12 13 - configureFlags = [ "--with-ssl=${openssl}" ]; 13 + buildInputs = [ openssl ]; 14 + 15 + configureFlags = [ "--with-ssl=${openssl.dev}" ]; 14 16 15 17 meta = with stdenv.lib; { 16 18 description = "HTTP load tester";