2018-08-15 08:18:53 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
2019-01-08 22:00:58 +00:00
|
|
|
, boost, python3
|
|
|
|
|
|
|
|
# TODO: also add libtrellis, later on
|
|
|
|
, icestorm
|
|
|
|
|
|
|
|
# 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
|
2018-08-15 08:18:53 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
boostPython = boost.override { python = python3; enablePython = true; };
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "nextpnr-${version}";
|
2019-01-08 21:13:28 +00:00
|
|
|
version = "2019.01.08";
|
2018-08-15 08:18:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "yosyshq";
|
|
|
|
repo = "nextpnr";
|
2019-01-08 21:13:28 +00:00
|
|
|
rev = "c1d15c749c2aa105ee7b38ebe1b60a27e3743e8c";
|
|
|
|
sha256 = "082ac03s6164s7dwz1l9phshl8m1lizn45jykabrhks5jcccchbh";
|
2018-08-15 08:18:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-01-08 22:00:58 +00:00
|
|
|
buildInputs
|
|
|
|
= [ boostPython python3 ]
|
|
|
|
++ (stdenv.lib.optional enableGui qtbase);
|
2018-08-15 08:18:53 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
cmakeFlags =
|
|
|
|
[ "-DARCH=generic;ice40"
|
|
|
|
"-DICEBOX_ROOT=${icestorm}/share/icebox"
|
2019-01-08 22:00:58 +00:00
|
|
|
] ++ (stdenv.lib.optional (!enableGui) "-DBUILD_GUI=OFF");
|
2018-08-15 08:18:53 +01:00
|
|
|
|
2019-01-08 22:18:12 +00:00
|
|
|
# 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}'
|
|
|
|
'';
|
|
|
|
|
2018-08-15 08:18:53 +01:00
|
|
|
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 ];
|
2019-01-08 22:00:58 +00:00
|
|
|
|
|
|
|
broken = enableGui;
|
2018-08-15 08:18:53 +01:00
|
|
|
};
|
|
|
|
}
|