2019-07-05 16:42:08 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
2019-04-09 23:12:11 +01:00
|
|
|
, boost, python3, eigen
|
2019-01-08 23:19:51 +00:00
|
|
|
, icestorm, trellis
|
2019-08-30 21:02:40 +01:00
|
|
|
, llvmPackages
|
2019-01-08 22:00:58 +00:00
|
|
|
|
2019-08-20 06:02:35 +01:00
|
|
|
, enableGui ? true
|
|
|
|
, wrapQtAppsHook
|
|
|
|
, qtbase
|
2019-09-02 18:49:12 +01:00
|
|
|
, OpenGL ? null
|
2018-08-15 08:18:53 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
boostPython = boost.override { python = python3; enablePython = true; };
|
|
|
|
in
|
2019-08-20 06:02:35 +01:00
|
|
|
with stdenv; mkDerivation rec {
|
2019-08-14 00:40:25 +01:00
|
|
|
pname = "nextpnr";
|
2019-10-13 17:28:35 +01:00
|
|
|
version = "2019.10.13";
|
2018-08-15 08:18:53 +01:00
|
|
|
|
2019-10-13 17:28:35 +01:00
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr";
|
|
|
|
rev = "c365dd1cabc3a4308ab9110534918623622c246b";
|
|
|
|
sha256 = "1344pyq9xb5y1vxsnfgr488drfjsa6ls1jck0z9hwam6vg55s10r";
|
|
|
|
name = "nextpnr";
|
|
|
|
})
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr-tests";
|
|
|
|
rev = "8f93e7e0f897b1b5da469919c9a43ba28b623b2a";
|
|
|
|
sha256 = "0zpd0w49k9l7rs3wmi2v8z5s4l4lad5rprs5l83w13667himpzyc";
|
|
|
|
name = "nextpnr-tests";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
sourceRoot = "nextpnr";
|
2018-08-15 08:18:53 +01:00
|
|
|
|
2019-07-05 16:42:08 +01:00
|
|
|
nativeBuildInputs
|
|
|
|
= [ cmake ]
|
2019-08-20 06:02:35 +01:00
|
|
|
++ (lib.optional enableGui wrapQtAppsHook);
|
2019-01-08 22:00:58 +00:00
|
|
|
buildInputs
|
2019-04-09 23:12:11 +01:00
|
|
|
= [ boostPython python3 eigen ]
|
2019-08-30 21:02:40 +01:00
|
|
|
++ (lib.optional enableGui qtbase)
|
|
|
|
++ (lib.optional stdenv.cc.isClang llvmPackages.openmp);
|
2018-08-15 08:18:53 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
cmakeFlags =
|
2019-01-08 23:19:51 +00:00
|
|
|
[ "-DARCH=generic;ice40;ecp5"
|
2019-09-27 15:07:07 +01:00
|
|
|
"-DBUILD_TESTS=ON"
|
2018-08-15 08:18:53 +01:00
|
|
|
"-DICEBOX_ROOT=${icestorm}/share/icebox"
|
2019-08-20 06:02:34 +01:00
|
|
|
"-DTRELLIS_ROOT=${trellis}/share/trellis"
|
|
|
|
"-DPYTRELLIS_LIBDIR=${trellis}/lib/trellis"
|
2019-04-15 06:02:35 +01:00
|
|
|
"-DUSE_OPENMP=ON"
|
2019-08-14 00:40:25 +01:00
|
|
|
# warning: high RAM usage
|
|
|
|
"-DSERIALIZE_CHIPDB=OFF"
|
2019-09-02 18:49:12 +01:00
|
|
|
]
|
|
|
|
++ (lib.optional (!enableGui) "-DBUILD_GUI=OFF")
|
|
|
|
++ (lib.optional (enableGui && stdenv.isDarwin)
|
|
|
|
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks");
|
2018-08-15 08:18:53 +01:00
|
|
|
|
2019-01-08 22:18:12 +00:00
|
|
|
# Fix the version number. This is a bit stupid (and fragile) in practice
|
|
|
|
# but works ok. We should probably make this overrideable upstream.
|
|
|
|
patchPhase = with builtins; ''
|
|
|
|
substituteInPlace ./CMakeLists.txt \
|
2019-10-13 17:28:35 +01:00
|
|
|
--replace 'git log -1 --format=%h' 'echo ${substring 0 11 (elemAt srcs 0).rev}'
|
2019-09-28 12:55:43 +01:00
|
|
|
|
|
|
|
# use PyPy for icestorm if enabled
|
|
|
|
substituteInPlace ./ice40/family.cmake \
|
|
|
|
--replace ''\'''${PYTHON_EXECUTABLE}' '${icestorm.pythonInterp}'
|
2019-01-08 22:18:12 +00:00
|
|
|
'';
|
|
|
|
|
2019-10-13 17:28:35 +01:00
|
|
|
preBuild = ''
|
|
|
|
ln -s ../nextpnr-tests tests
|
|
|
|
'';
|
|
|
|
|
2019-09-27 15:07:07 +01:00
|
|
|
doCheck = true;
|
2019-08-20 06:02:35 +01:00
|
|
|
|
|
|
|
postFixup = lib.optionalString enableGui ''
|
|
|
|
wrapQtApp $out/bin/nextpnr-generic
|
|
|
|
wrapQtApp $out/bin/nextpnr-ice40
|
|
|
|
wrapQtApp $out/bin/nextpnr-ecp5
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2018-08-15 08:18:53 +01:00
|
|
|
description = "Place and route tool for FPGAs";
|
|
|
|
homepage = https://github.com/yosyshq/nextpnr;
|
|
|
|
license = licenses.isc;
|
2019-09-02 18:49:12 +01:00
|
|
|
platforms = platforms.all;
|
2019-08-22 07:50:34 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice emily ];
|
2018-08-15 08:18:53 +01:00
|
|
|
};
|
|
|
|
}
|