75 lines
2.3 KiB
Nix
75 lines
2.3 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, makeWrapper
|
|
, boost, python3, eigen
|
|
, icestorm, trellis
|
|
|
|
# TODO(thoughtpolice) Currently the GUI build seems broken at runtime on my
|
|
# laptop (and over a remote X server on my server...), so mark it broken for
|
|
# now, with intent to fix later.
|
|
, enableGui ? false
|
|
, qtbase
|
|
}:
|
|
|
|
let
|
|
boostPython = boost.override { python = python3; enablePython = true; };
|
|
|
|
# This is a massive hack. For now, Trellis doesn't really support
|
|
# installation through an already-built package; you have to build it once to
|
|
# get the tools, then reuse the build directory to build nextpnr -- the
|
|
# 'install' phase doesn't install everything it needs. This will be fixed in
|
|
# the future but for now we can do this horrific thing.
|
|
trellisRoot = trellis.overrideAttrs (_: {
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp *.so ..
|
|
cd ../../.. && cp -R trellis database $out/
|
|
'';
|
|
});
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "nextpnr-${version}";
|
|
version = "2019.04.02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yosyshq";
|
|
repo = "nextpnr";
|
|
rev = "6adf37e3c1d4301e087d89c9e9c37563fe8d78df";
|
|
sha256 = "0qqb2yd2s39hahh5qigvllgyzj7rp3r1k9jp2n9z2jrfpiaz68c6";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
|
buildInputs
|
|
= [ boostPython python3 eigen ]
|
|
++ (stdenv.lib.optional enableGui qtbase);
|
|
|
|
enableParallelBuilding = true;
|
|
cmakeFlags =
|
|
[ "-DARCH=generic;ice40;ecp5"
|
|
"-DICEBOX_ROOT=${icestorm}/share/icebox"
|
|
"-DTRELLIS_ROOT=${trellisRoot}/trellis"
|
|
] ++ (stdenv.lib.optional (!enableGui) "-DBUILD_GUI=OFF");
|
|
|
|
# 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 \
|
|
--replace 'git log -1 --format=%h' 'echo ${substring 0 11 src.rev}'
|
|
'';
|
|
|
|
postInstall = stdenv.lib.optionalString enableGui ''
|
|
for x in generic ice40 ecp5; do
|
|
wrapProgram $out/bin/nextpnr-$x \
|
|
--prefix QT_PLUGIN_PATH : "${qtbase}/${qtbase.qtPluginPrefix}"
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Place and route tool for FPGAs";
|
|
homepage = https://github.com/yosyshq/nextpnr;
|
|
license = licenses.isc;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
|
|
broken = enableGui;
|
|
};
|
|
}
|