2019-07-05 17:42:08 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
2019-04-10 00:12:11 +02:00
|
|
|
, boost, python3, eigen
|
2019-01-09 00:19:51 +01:00
|
|
|
, icestorm, trellis
|
2019-08-30 22:02:40 +02:00
|
|
|
, llvmPackages
|
2019-01-08 23:00:58 +01:00
|
|
|
|
2021-01-03 12:32:11 +01:00
|
|
|
, enableGui ? false
|
|
|
|
, wrapQtAppsHook ? null
|
|
|
|
, qtbase ? null
|
2019-09-02 19:49:12 +02:00
|
|
|
, OpenGL ? null
|
2018-08-15 09:18:53 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
boostPython = boost.override { python = python3; enablePython = true; };
|
|
|
|
in
|
2019-08-20 07:02:35 +02:00
|
|
|
with stdenv; mkDerivation rec {
|
2019-08-14 01:40:25 +02:00
|
|
|
pname = "nextpnr";
|
2021-01-03 12:32:11 +01:00
|
|
|
version = "2021.01.02";
|
2018-08-15 09:18:53 +02:00
|
|
|
|
2019-10-13 18:28:35 +02:00
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr";
|
2021-01-03 12:32:11 +01:00
|
|
|
rev = "9b9628047c01a970cfe20f83f2b7129ed109440d";
|
|
|
|
sha256 = "0pcv96d0n40h2ipywi909hpzlys5b6r4pamc320qk1xxhppmgkmm";
|
2019-10-13 18:28:35 +02:00
|
|
|
name = "nextpnr";
|
|
|
|
})
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr-tests";
|
|
|
|
rev = "8f93e7e0f897b1b5da469919c9a43ba28b623b2a";
|
|
|
|
sha256 = "0zpd0w49k9l7rs3wmi2v8z5s4l4lad5rprs5l83w13667himpzyc";
|
|
|
|
name = "nextpnr-tests";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
sourceRoot = "nextpnr";
|
2018-08-15 09:18:53 +02:00
|
|
|
|
2019-07-05 17:42:08 +02:00
|
|
|
nativeBuildInputs
|
|
|
|
= [ cmake ]
|
2019-08-20 07:02:35 +02:00
|
|
|
++ (lib.optional enableGui wrapQtAppsHook);
|
2019-01-08 23:00:58 +01:00
|
|
|
buildInputs
|
2019-04-10 00:12:11 +02:00
|
|
|
= [ boostPython python3 eigen ]
|
2019-08-30 22:02:40 +02:00
|
|
|
++ (lib.optional enableGui qtbase)
|
|
|
|
++ (lib.optional stdenv.cc.isClang llvmPackages.openmp);
|
2018-08-15 09:18:53 +02:00
|
|
|
|
|
|
|
cmakeFlags =
|
2020-02-08 16:32:29 +01:00
|
|
|
[ "-DCURRENT_GIT_VERSION=${lib.substring 0 7 (lib.elemAt srcs 0).rev}"
|
|
|
|
"-DARCH=generic;ice40;ecp5"
|
2019-09-27 16:07:07 +02:00
|
|
|
"-DBUILD_TESTS=ON"
|
2021-01-03 12:32:11 +01:00
|
|
|
"-DICESTORM_INSTALL_PREFIX=${icestorm}"
|
2020-02-08 16:32:29 +01:00
|
|
|
"-DTRELLIS_INSTALL_PREFIX=${trellis}"
|
2020-07-13 13:18:51 +02:00
|
|
|
"-DTRELLIS_LIBDIR=${trellis}/lib/trellis"
|
2019-04-15 07:02:35 +02:00
|
|
|
"-DUSE_OPENMP=ON"
|
2019-08-14 01:40:25 +02:00
|
|
|
# warning: high RAM usage
|
2021-01-03 12:32:11 +01:00
|
|
|
"-DSERIALIZE_CHIPDBS=OFF"
|
2019-09-02 19:49:12 +02:00
|
|
|
]
|
2021-01-03 12:32:11 +01:00
|
|
|
++ (lib.optional enableGui "-DBUILD_GUI=ON")
|
2019-09-02 19:49:12 +02:00
|
|
|
++ (lib.optional (enableGui && stdenv.isDarwin)
|
|
|
|
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks");
|
2018-08-15 09:18:53 +02:00
|
|
|
|
2019-01-08 23:18:12 +01:00
|
|
|
patchPhase = with builtins; ''
|
2019-09-28 13:55:43 +02:00
|
|
|
# use PyPy for icestorm if enabled
|
|
|
|
substituteInPlace ./ice40/family.cmake \
|
|
|
|
--replace ''\'''${PYTHON_EXECUTABLE}' '${icestorm.pythonInterp}'
|
2019-01-08 23:18:12 +01:00
|
|
|
'';
|
|
|
|
|
2019-10-13 18:28:35 +02:00
|
|
|
preBuild = ''
|
|
|
|
ln -s ../nextpnr-tests tests
|
|
|
|
'';
|
|
|
|
|
2019-09-27 16:07:07 +02:00
|
|
|
doCheck = true;
|
2019-08-20 07:02:35 +02: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 09:18:53 +02:00
|
|
|
description = "Place and route tool for FPGAs";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/yosyshq/nextpnr";
|
2018-08-15 09:18:53 +02:00
|
|
|
license = licenses.isc;
|
2019-09-02 19:49:12 +02:00
|
|
|
platforms = platforms.all;
|
2019-08-22 08:50:34 +02:00
|
|
|
maintainers = with maintainers; [ thoughtpolice emily ];
|
2018-08-15 09:18:53 +02:00
|
|
|
};
|
|
|
|
}
|