nixpkgs/pkgs/development/compilers/nextpnr/default.nix

88 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake
2019-04-09 22:12:11 +00:00
, boost, python3, eigen
, icestorm, trellis
2019-08-30 20:02:40 +00:00
, llvmPackages
2019-08-20 05:02:35 +00:00
, enableGui ? true
, wrapQtAppsHook
, qtbase
, OpenGL ? null
}:
let
boostPython = boost.override { python = python3; enablePython = true; };
in
2019-08-20 05:02:35 +00:00
with stdenv; mkDerivation rec {
2019-08-13 23:40:25 +00:00
pname = "nextpnr";
version = "2020.07.08";
2019-10-13 16:28:35 +00:00
srcs = [
(fetchFromGitHub {
owner = "YosysHQ";
repo = "nextpnr";
rev = "3cafb16aa634d2bc369077d8d36760d23973a35b";
sha256 = "0z6q8f2f97jr037d51h097vck9jspidjn0pb5irlj0xdnb5si0js";
2019-10-13 16:28:35 +00:00
name = "nextpnr";
})
(fetchFromGitHub {
owner = "YosysHQ";
repo = "nextpnr-tests";
rev = "8f93e7e0f897b1b5da469919c9a43ba28b623b2a";
sha256 = "0zpd0w49k9l7rs3wmi2v8z5s4l4lad5rprs5l83w13667himpzyc";
name = "nextpnr-tests";
})
];
sourceRoot = "nextpnr";
nativeBuildInputs
= [ cmake ]
2019-08-20 05:02:35 +00:00
++ (lib.optional enableGui wrapQtAppsHook);
buildInputs
2019-04-09 22:12:11 +00:00
= [ boostPython python3 eigen ]
2019-08-30 20:02:40 +00:00
++ (lib.optional enableGui qtbase)
++ (lib.optional stdenv.cc.isClang llvmPackages.openmp);
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 14:07:07 +00:00
"-DBUILD_TESTS=ON"
"-DICEBOX_ROOT=${icestorm}/share/icebox"
2020-02-08 15:32:29 +00:00
"-DTRELLIS_INSTALL_PREFIX=${trellis}"
2019-08-20 05:02:34 +00:00
"-DPYTRELLIS_LIBDIR=${trellis}/lib/trellis"
"-DUSE_OPENMP=ON"
2019-08-13 23:40:25 +00:00
# warning: high RAM usage
"-DSERIALIZE_CHIPDB=OFF"
]
++ (lib.optional (!enableGui) "-DBUILD_GUI=OFF")
++ (lib.optional (enableGui && stdenv.isDarwin)
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks");
patchPhase = with builtins; ''
2019-09-28 11:55:43 +00:00
# use PyPy for icestorm if enabled
substituteInPlace ./ice40/family.cmake \
--replace ''\'''${PYTHON_EXECUTABLE}' '${icestorm.pythonInterp}'
'';
2019-10-13 16:28:35 +00:00
preBuild = ''
ln -s ../nextpnr-tests tests
'';
2019-09-27 14:07:07 +00:00
doCheck = true;
2019-08-20 05:02:35 +00:00
postFixup = lib.optionalString enableGui ''
wrapQtApp $out/bin/nextpnr-generic
wrapQtApp $out/bin/nextpnr-ice40
wrapQtApp $out/bin/nextpnr-ecp5
'';
meta = with lib; {
description = "Place and route tool for FPGAs";
homepage = "https://github.com/yosyshq/nextpnr";
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice emily ];
};
}