From 21d2bc83c0ac34e4307ac45423cdad5d487588b4 Mon Sep 17 00:00:00 2001 From: Tomas Drtina Date: Wed, 7 Jun 2023 19:41:58 +0200 Subject: [PATCH] onnxruntime: unpin abseil-cpp --- pkgs/development/libraries/onnxruntime/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/onnxruntime/default.nix b/pkgs/development/libraries/onnxruntime/default.nix index dc87fc35951c..0d36ce7ae42b 100644 --- a/pkgs/development/libraries/onnxruntime/default.nix +++ b/pkgs/development/libraries/onnxruntime/default.nix @@ -14,7 +14,7 @@ , nlohmann_json , boost , oneDNN_2 -, abseil-cpp_202111 +, abseil-cpp , gtest , pythonSupport ? false , nsync @@ -92,7 +92,7 @@ stdenv.mkDerivation rec { "-Donnxruntime_USE_PREINSTALLED_EIGEN=ON" "-Donnxruntime_USE_MPI=ON" "-Deigen_SOURCE_PATH=${eigen.src}" - "-DFETCHCONTENT_SOURCE_DIR_ABSEIL_CPP=${abseil-cpp_202111.src}" + "-DFETCHCONTENT_SOURCE_DIR_ABSEIL_CPP=${abseil-cpp.src}" "-Donnxruntime_USE_DNNL=YES" ] ++ lib.optionals pythonSupport [ "-Donnxruntime_ENABLE_PYTHON=ON"