2019-07-05 10:42:08 -05:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
2019-04-09 18:12:11 -04:00
|
|
|
, boost, python3, eigen
|
2019-01-08 17:19:51 -06:00
|
|
|
, icestorm, trellis
|
2019-08-30 21:02:40 +01:00
|
|
|
, llvmPackages
|
2019-01-08 16:00:58 -06:00
|
|
|
|
2019-08-19 22:02:35 -07:00
|
|
|
, enableGui ? true
|
|
|
|
, wrapQtAppsHook
|
|
|
|
, qtbase
|
2019-09-02 18:49:12 +01:00
|
|
|
, OpenGL ? null
|
2018-08-15 02:18:53 -05:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
boostPython = boost.override { python = python3; enablePython = true; };
|
|
|
|
in
|
2019-08-19 22:02:35 -07:00
|
|
|
with stdenv; mkDerivation rec {
|
2019-08-13 16:40:25 -07:00
|
|
|
pname = "nextpnr";
|
2020-03-25 06:46:00 -05:00
|
|
|
version = "2020.03.25";
|
2018-08-15 02:18:53 -05:00
|
|
|
|
2019-10-13 17:28:35 +01:00
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr";
|
2020-03-25 06:46:00 -05:00
|
|
|
rev = "a3ede0293a50c910e7d96319b2084d50f2501a6b";
|
|
|
|
sha256 = "0ikfjva4gqmlx6y7mjamg03ad7x9gnz32ahqv798ynd87svq10aq";
|
2019-10-13 17:28:35 +01:00
|
|
|
name = "nextpnr";
|
|
|
|
})
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr-tests";
|
|
|
|
rev = "8f93e7e0f897b1b5da469919c9a43ba28b623b2a";
|
|
|
|
sha256 = "0zpd0w49k9l7rs3wmi2v8z5s4l4lad5rprs5l83w13667himpzyc";
|
|
|
|
name = "nextpnr-tests";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
sourceRoot = "nextpnr";
|
2018-08-15 02:18:53 -05:00
|
|
|
|
2019-07-05 10:42:08 -05:00
|
|
|
nativeBuildInputs
|
|
|
|
= [ cmake ]
|
2019-08-19 22:02:35 -07:00
|
|
|
++ (lib.optional enableGui wrapQtAppsHook);
|
2019-01-08 16:00:58 -06:00
|
|
|
buildInputs
|
2019-04-09 18:12:11 -04: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 02:18:53 -05:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
cmakeFlags =
|
2020-02-08 15:32:29 +00:00
|
|
|
[ "-DCURRENT_GIT_VERSION=${lib.substring 0 7 (lib.elemAt srcs 0).rev}"
|
|
|
|
"-DARCH=generic;ice40;ecp5"
|
2019-09-27 15:07:07 +01:00
|
|
|
"-DBUILD_TESTS=ON"
|
2018-08-15 02:18:53 -05:00
|
|
|
"-DICEBOX_ROOT=${icestorm}/share/icebox"
|
2020-02-08 15:32:29 +00:00
|
|
|
"-DTRELLIS_INSTALL_PREFIX=${trellis}"
|
2019-08-19 22:02:34 -07:00
|
|
|
"-DPYTRELLIS_LIBDIR=${trellis}/lib/trellis"
|
2019-04-15 00:02:35 -05:00
|
|
|
"-DUSE_OPENMP=ON"
|
2019-08-13 16:40:25 -07: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 02:18:53 -05:00
|
|
|
|
2019-01-08 16:18:12 -06:00
|
|
|
patchPhase = with builtins; ''
|
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 16:18:12 -06: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-19 22:02:35 -07: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 02:18:53 -05: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-21 23:50:34 -07:00
|
|
|
maintainers = with maintainers; [ thoughtpolice emily ];
|
2018-08-15 02:18:53 -05:00
|
|
|
};
|
|
|
|
}
|