Admins will be upgrading ORNL GitLab Servers on Saturday, 16 May 2026, from 7 AM until 11 AM EST. Repositories will experience intermittent outages during this time.
# Fix CMake version requirement to support newer CMake versions,
# Should be removed once upstream fixed it.
./fix-cmake-require.patch
];
postPatch=''
# Comment out the iCTS test cases that will fail due to some linking issues on aarch64-linux
sed -i '17,28s/^/# /' src/operation/iCTS/test/CMakeLists.txt
'';
dontBuild=true;
dontFixup=true;
installPhase=''
@@ -66,7 +66,7 @@ let
in
stdenv.mkDerivation{
pname="iEDA";
version="0-unstable-2025-06-30";
version="0.1.0-unstable-2025-09-10";
src=rootSrc;
@@ -77,6 +77,7 @@ stdenv.mkDerivation {
bison
python3
tcl
pkg-config
];
cmakeFlags=[
@@ -108,6 +109,8 @@ stdenv.mkDerivation {
gmp
tcl
zlib
curl
onetbb
];
postInstall=''
@@ -128,7 +131,7 @@ stdenv.mkDerivation {
runHook postInstallCheck
'';
doInstallCheck=true;
doInstallCheck=!stdenv.hostPlatform.isAarch64;# Tests will fail on aarch64-linux, wait for upstream fix: https://github.com/microsoft/onnxruntime/issues/10038