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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake
2021-09-25 03:26:56 +02:00
, boost, python3, eigen, python3Packages
, icestorm, trellis
2019-08-30 22:02:40 +02:00
, llvmPackages
, enableGui ? false
, wrapQtAppsHook ? null
, qtbase ? null
, OpenGL ? null
}:
let
boostPython = boost.override { python = python3; enablePython = true; };
in
stdenv.mkDerivation rec {
2019-08-14 01:40:25 +02:00
pname = "nextpnr";
version = "0.4";
2019-10-13 18:28:35 +02:00
srcs = [
(fetchFromGitHub {
owner = "YosysHQ";
repo = "nextpnr";
rev = "${pname}-${version}";
hash = "sha256-gnNUFSV+/SzCuP43KyUUgVNdAzjOM7lOLNJT72L8lTY=";
name = "nextpnr";
2019-10-13 18:28:35 +02:00
})
(fetchFromGitHub {
owner = "YosysHQ";
repo = "nextpnr-tests";
rev = "00c55a9eb9ea2e062b51fe0d64741412b185d95d";
sha256 = "sha256-83suMftMtnaRFq3T2/I7Uahb11WZlXhwYt6Q/rqi2Yo=";
2019-10-13 18:28:35 +02:00
name = "nextpnr-tests";
})
];
sourceRoot = "nextpnr";
nativeBuildInputs
= [ cmake ]
2019-08-20 07:02:35 +02:00
++ (lib.optional enableGui wrapQtAppsHook);
buildInputs
2021-09-25 03:26:56 +02:00
= [ boostPython python3 eigen python3Packages.apycula ]
2019-08-30 22:02:40 +02:00
++ (lib.optional enableGui qtbase)
++ (lib.optional stdenv.cc.isClang llvmPackages.openmp);
cmakeFlags =
2020-02-08 16:32:29 +01:00
[ "-DCURRENT_GIT_VERSION=${lib.substring 0 7 (lib.elemAt srcs 0).rev}"
2021-09-25 03:26:56 +02:00
"-DARCH=generic;ice40;ecp5;gowin"
2019-09-27 16:07:07 +02:00
"-DBUILD_TESTS=ON"
"-DICESTORM_INSTALL_PREFIX=${icestorm}"
2020-02-08 16:32:29 +01:00
"-DTRELLIS_INSTALL_PREFIX=${trellis}"
"-DTRELLIS_LIBDIR=${trellis}/lib/trellis"
2021-09-25 03:26:56 +02:00
"-DGOWIN_BBA_EXECUTABLE=${python3Packages.apycula}/bin/gowin_bba"
"-DUSE_OPENMP=ON"
2019-08-14 01:40:25 +02:00
# warning: high RAM usage
"-DSERIALIZE_CHIPDBS=OFF"
]
++ (lib.optional enableGui "-DBUILD_GUI=ON")
++ (lib.optional (enableGui && stdenv.isDarwin)
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks");
patchPhase = with builtins; ''
2019-09-28 13:55:43 +02:00
# use PyPy for icestorm if enabled
substituteInPlace ./ice40/CMakeLists.txt \
2019-09-28 13:55:43 +02:00
--replace ''\'''${PYTHON_EXECUTABLE}' '${icestorm.pythonInterp}'
'';
2019-10-13 18:28:35 +02:00
preBuild = ''
ln -s ../nextpnr-tests tests
'';
2019-09-27 16:07:07 +02:00
doCheck = true;
2019-08-20 07:02:35 +02:00
postFixup = lib.optionalString enableGui ''
wrapQtApp $out/bin/nextpnr-generic
wrapQtApp $out/bin/nextpnr-ice40
wrapQtApp $out/bin/nextpnr-ecp5
2021-09-25 03:26:56 +02:00
wrapQtApp $out/bin/nextpnr-gowin
2019-08-20 07:02:35 +02:00
'';
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 ];
};
}