1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
{
lib,
stdenv,
fetchgit,
fetchFromGitHub,
fetchpatch,
callPackages,
cmake,
ninja,
flex,
bison,
zlib,
tcl,
boost,
eigen,
yaml-cpp,
libunwind,
glog,
gtest,
gflags,
metis,
gmp,
python3,
onnxruntime,
}:
let
glog-lock = glog.overrideAttrs (oldAttrs: rec {
version = "0.6.0";
src = fetchFromGitHub {
owner = "google";
repo = "glog";
rev = "v${version}";
sha256 = "sha256-xqRp9vaauBkKz2CXbh/Z4TWqhaUtqfbsSlbYZR/kW9s=";
};
});
rootSrc = stdenv.mkDerivation {
pname = "iEDA-src";
version = "2025-03-12";
src = fetchgit {
url = "https://gitee.com/oscc-project/iEDA";
rev = "3a066726aa9521991a46d603f041831361d3ba51";
sha256 = "sha256-iPdp1xEje8bBumI/eqhvw0llg3NAzRb8pzc3fmWMwtU=";
};
patches = [
# This patch is to fix the build error caused by the missing of the header file,
# and remove some libs or path that they hard-coded in the source code.
# Should be removed after we upstream these changes.
(fetchpatch {
url = "https://github.com/Emin017/iEDA/commit/0eb86754063df6e21b35fd1396363ebc75b760c5.patch";
hash = "sha256-hdH6+g3eZUxDudWqTwbaWNKS0fwfUWJPp//dqGNJQfM=";
})
];
dontBuild = true;
dontFixup = true;
installPhase = ''
cp -r . $out
'';
};
rustpkgs = callPackages ./rustpkgs.nix { inherit rootSrc; };
in
stdenv.mkDerivation {
pname = "iEDA";
version = "0-unstable-2025-03-12";
src = rootSrc;
nativeBuildInputs = [
cmake
ninja
flex
bison
python3
tcl
];
cmakeFlags = [
(lib.cmakeBool "CMD_BUILD" true)
(lib.cmakeBool "SANITIZER" false)
(lib.cmakeBool "BUILD_STATIC_LIB" false)
];
preConfigure = ''
cmakeFlags+=" -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:FILEPATH=$out/bin -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:FILEPATH=$out/lib"
'';
buildInputs = [
rustpkgs.iir-rust
rustpkgs.sdf_parse
rustpkgs.spef-parser
rustpkgs.vcd_parser
rustpkgs.verilog-parser
rustpkgs.liberty-parser
gtest
glog-lock
gflags
boost
onnxruntime
eigen
yaml-cpp
libunwind
metis
gmp
tcl
zlib
];
postInstall = ''
# Tests rely on hardcoded path, so they should not be included
rm $out/bin/*test $out/bin/*Test $out/bin/test_* $out/bin/*_app
'';
enableParallelBuild = true;
meta = {
description = "Open-source EDA infracstructure and tools from Netlist to GDS for ASIC design";
homepage = "https://gitee.com/oscc-project/iEDA";
license = lib.licenses.mulan-psl2;
maintainers = with lib.maintainers; [
xinyangli
Emin017
];
mainProgram = "iEDA";
platforms = lib.platforms.linux;
};
}
|