ucx: use getDev to pickup rdam-core includes

This commit is contained in:
Markus Kowalewski 2023-09-30 17:02:39 +02:00
parent ff75cea66d
commit 48e763b1ac

View file

@ -43,11 +43,11 @@ stdenv.mkDerivation rec {
++ lib.optionals enableRocm [ rocm-core rocm-runtime rocm-device-libs hip ];
configureFlags = [
"--with-rdmacm=${rdma-core}"
"--with-rdmacm=${lib.getDev rdma-core}"
"--with-dc"
"--with-rc"
"--with-dm"
"--with-verbs=${rdma-core}"
"--with-verbs=${lib.getDev rdma-core}"
] ++ lib.optional enableCuda "--with-cuda=${cudatoolkit'}"
++ lib.optional enableRocm "--with-rocm=${rocm}";