2021-01-27 10:21:31 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake
|
2021-09-25 02:26:56 +01:00
|
|
|
, boost, python3, eigen, python3Packages
|
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
|
|
|
|
2021-01-03 11:32:11 +00:00
|
|
|
, enableGui ? false
|
|
|
|
, wrapQtAppsHook ? null
|
|
|
|
, qtbase ? null
|
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
|
2021-01-27 10:21:31 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-14 00:40:25 +01:00
|
|
|
pname = "nextpnr";
|
2021-12-02 20:05:39 +00:00
|
|
|
version = "2021.11.24"; # tagged as 0.1, but we'll keep tracking HEAD
|
2018-08-15 08:18:53 +01:00
|
|
|
|
2019-10-13 17:28:35 +01:00
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr";
|
2021-12-02 20:05:39 +00:00
|
|
|
rev = "fd2d4a8f999947ece42f791e19ddc4c2d8b823f2";
|
|
|
|
sha256 = "sha256-bGh3svJeVRJO0rTnSYoTndeQrTENx6j9t+GCGX4RX4k=";
|
2019-10-13 17:28:35 +01:00
|
|
|
name = "nextpnr";
|
|
|
|
})
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr-tests";
|
2021-07-28 21:17:00 +01:00
|
|
|
rev = "ccc61e5ec7cc04410462ec3196ad467354787afb";
|
2021-09-28 23:12:23 +01:00
|
|
|
sha256 = "sha256-VT0JfpRLgfo2WG+eoMdE0scPM5nKZZ/v1XlkeDNcQCU=";
|
2019-10-13 17:28:35 +01:00
|
|
|
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
|
2021-09-25 02:26:56 +01:00
|
|
|
= [ boostPython python3 eigen python3Packages.apycula ]
|
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
|
|
|
|
|
|
|
cmakeFlags =
|
2020-02-08 15:32:29 +00:00
|
|
|
[ "-DCURRENT_GIT_VERSION=${lib.substring 0 7 (lib.elemAt srcs 0).rev}"
|
2021-09-25 02:26:56 +01:00
|
|
|
"-DARCH=generic;ice40;ecp5;gowin"
|
2019-09-27 15:07:07 +01:00
|
|
|
"-DBUILD_TESTS=ON"
|
2021-01-03 11:32:11 +00:00
|
|
|
"-DICESTORM_INSTALL_PREFIX=${icestorm}"
|
2020-02-08 15:32:29 +00:00
|
|
|
"-DTRELLIS_INSTALL_PREFIX=${trellis}"
|
2020-07-13 12:18:51 +01:00
|
|
|
"-DTRELLIS_LIBDIR=${trellis}/lib/trellis"
|
2021-09-25 02:26:56 +01:00
|
|
|
"-DGOWIN_BBA_EXECUTABLE=${python3Packages.apycula}/bin/gowin_bba"
|
2019-04-15 06:02:35 +01:00
|
|
|
"-DUSE_OPENMP=ON"
|
2019-08-14 00:40:25 +01:00
|
|
|
# warning: high RAM usage
|
2021-01-03 11:32:11 +00:00
|
|
|
"-DSERIALIZE_CHIPDBS=OFF"
|
2019-09-02 18:49:12 +01:00
|
|
|
]
|
2021-01-03 11:32:11 +00:00
|
|
|
++ (lib.optional enableGui "-DBUILD_GUI=ON")
|
2019-09-02 18:49:12 +01:00
|
|
|
++ (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
|
|
|
patchPhase = with builtins; ''
|
2019-09-28 12:55:43 +01:00
|
|
|
# use PyPy for icestorm if enabled
|
2021-09-28 23:12:23 +01:00
|
|
|
substituteInPlace ./ice40/CMakeLists.txt \
|
2019-09-28 12:55:43 +01:00
|
|
|
--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
|
2021-09-25 02:26:56 +01:00
|
|
|
wrapQtApp $out/bin/nextpnr-gowin
|
2019-08-20 06:02:35 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2018-08-15 08:18:53 +01:00
|
|
|
description = "Place and route tool for FPGAs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/yosyshq/nextpnr";
|
2018-08-15 08:18:53 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|