2024-07-27 10:49:33 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
|
|
bison,
|
|
|
|
boost,
|
|
|
|
capnproto,
|
|
|
|
doxygen,
|
|
|
|
flex,
|
|
|
|
libdwarf-lite,
|
|
|
|
pkg-config,
|
|
|
|
python3,
|
|
|
|
tbb_2021_11,
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "naja";
|
|
|
|
version = "0-unstable-2024-07-21";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "najaeda";
|
|
|
|
repo = "naja";
|
|
|
|
rev = "8c068f3bd1bbd57b851547f191a58a375fd35cda";
|
|
|
|
hash = "sha256-aUYPJGr4D5n92fp0namPT6I/gMRZoF7YHnB7GoRzwYI=";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [
|
|
|
|
"dev"
|
|
|
|
"lib"
|
|
|
|
"out"
|
|
|
|
];
|
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
bison
|
|
|
|
capnproto
|
|
|
|
cmake
|
|
|
|
doxygen
|
|
|
|
flex
|
|
|
|
pkg-config
|
|
|
|
python3
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
capnproto # cmake modules
|
|
|
|
flex # include dir
|
|
|
|
libdwarf-lite
|
|
|
|
tbb_2021_11
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
(lib.cmakeBool "CPPTRACE_USE_EXTERNAL_LIBDWARF" true)
|
|
|
|
(lib.cmakeBool "CPPTRACE_USE_EXTERNAL_ZSTD" true)
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Structural Netlist API (and more) for EDA post synthesis flow development";
|
|
|
|
homepage = "https://github.com/najaeda/naja";
|
|
|
|
license = lib.licenses.asl20;
|
2024-08-01 12:54:39 +00:00
|
|
|
maintainers = [
|
|
|
|
# maintained by the team working on NGI-supported software, no group for this yet
|
|
|
|
];
|
2024-07-27 10:49:33 +00:00
|
|
|
mainProgram = "naja_edit";
|
|
|
|
platforms = lib.platforms.all;
|
2024-08-01 12:54:39 +00:00
|
|
|
# "aligned deallocation function of type [...] is only available on macOS 10.13 or newer" even with 11.0 SDK
|
|
|
|
broken = stdenv.hostPlatform.isDarwin;
|
2024-07-27 10:49:33 +00:00
|
|
|
};
|
|
|
|
}
|