412e02c784
This didn't work remotely (on a server with Nvidia drivers) _or_ on a local Intel machine with integrated graphics. I presumably messed something up (a missing dependency), but I'm not sure where. We can fix it later. In the mean time, just disable this by hiding it behind a minimal flag. As a bonus this reduces the closure size by about half, although it's still surprisingly large (~300MB or so). Part of that is probably Python, though. When the GUI is reintroduced in a working manner, we can expose two nextpnr attributes for the minimal non-GUI build, and the GUI build. (Note that I have no plans of making Python optional, since it's extremely valuable in general and much more lightweight than qtbase.) Signed-off-by: Austin Seipp <aseipp@pobox.com>
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, cmake
|
|
, 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
|
|
}:
|
|
|
|
let
|
|
boostPython = boost.override { python = python3; enablePython = true; };
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "nextpnr-${version}";
|
|
version = "2019.01.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yosyshq";
|
|
repo = "nextpnr";
|
|
rev = "c1d15c749c2aa105ee7b38ebe1b60a27e3743e8c";
|
|
sha256 = "082ac03s6164s7dwz1l9phshl8m1lizn45jykabrhks5jcccchbh";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs
|
|
= [ boostPython python3 ]
|
|
++ (stdenv.lib.optional enableGui qtbase);
|
|
|
|
enableParallelBuilding = true;
|
|
cmakeFlags =
|
|
[ "-DARCH=generic;ice40"
|
|
"-DICEBOX_ROOT=${icestorm}/share/icebox"
|
|
] ++ (stdenv.lib.optional (!enableGui) "-DBUILD_GUI=OFF");
|
|
|
|
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;
|
|
};
|
|
}
|