Merge pull request #168536 from thequux/add-sctp-support-to-iperf3

iperf3: Add support for SCTP
This commit is contained in:
Franz Pletz 2022-04-14 03:52:35 +02:00 committed by GitHub
commit dfc7a39803
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, openssl, fetchpatch }:
{ lib, stdenv, fetchurl, openssl, fetchpatch, lksctp-tools }:
stdenv.mkDerivation rec {
pname = "iperf";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "0pvy1cj92phpbldw0bdc0ds70n8irqcyn1ybyis0a6nnz84v936y";
};
buildInputs = [ openssl ];
buildInputs = [ openssl lksctp-tools ];
configureFlags = [
"--with-openssl=${openssl.dev}"
];