2021-01-27 10:21:31 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake
|
2021-09-25 01:26:56 +00:00
|
|
|
, boost, python3, eigen, python3Packages
|
2019-01-08 23:19:51 +00:00
|
|
|
, icestorm, trellis
|
2019-08-30 20:02:40 +00:00
|
|
|
, llvmPackages
|
2019-01-08 22:00:58 +00:00
|
|
|
|
2021-01-03 11:32:11 +00:00
|
|
|
, enableGui ? false
|
|
|
|
, wrapQtAppsHook ? null
|
|
|
|
, qtbase ? null
|
2019-09-02 17:49:12 +00:00
|
|
|
, OpenGL ? null
|
2018-08-15 07:18:53 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
boostPython = boost.override { python = python3; enablePython = true; };
|
treewide: noop: refer to `src.name` or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.
Also, similarly to d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-08 17:18:01 +00:00
|
|
|
|
2019-08-13 23:40:25 +00:00
|
|
|
pname = "nextpnr";
|
2024-01-24 11:56:01 +00:00
|
|
|
version = "0.7";
|
2018-08-15 07:18:53 +00:00
|
|
|
|
treewide: noop: refer to `src.name` or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.
Also, similarly to d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-08 17:18:01 +00:00
|
|
|
main_src = fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr";
|
|
|
|
rev = "${pname}-${version}";
|
2024-01-24 11:56:01 +00:00
|
|
|
hash = "sha256-YIAQcCg9RjvCys1bQ3x+sTgTmnmEeXVbt9Lr6wtg1pA=";
|
treewide: noop: refer to `src.name` or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.
Also, similarly to d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-08 17:18:01 +00:00
|
|
|
name = "nextpnr";
|
|
|
|
};
|
|
|
|
|
|
|
|
test_src = fetchFromGitHub {
|
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "nextpnr-tests";
|
|
|
|
rev = "00c55a9eb9ea2e062b51fe0d64741412b185d95d";
|
2024-09-14 21:47:11 +00:00
|
|
|
hash = "sha256-83suMftMtnaRFq3T2/I7Uahb11WZlXhwYt6Q/rqi2Yo=";
|
treewide: noop: refer to `src.name` or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.
Also, similarly to d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-08 17:18:01 +00:00
|
|
|
name = "nextpnr-tests";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit pname version;
|
|
|
|
|
|
|
|
srcs = [ main_src test_src ];
|
2019-10-13 16:28:35 +00:00
|
|
|
|
treewide: noop: refer to `src.name` or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.
Also, similarly to d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-08 17:18:01 +00:00
|
|
|
sourceRoot = main_src.name;
|
2018-08-15 07:18:53 +00:00
|
|
|
|
2019-07-05 15:42:08 +00:00
|
|
|
nativeBuildInputs
|
2024-06-19 06:22:00 +00:00
|
|
|
= [ cmake python3 ]
|
2019-08-20 05:02:35 +00:00
|
|
|
++ (lib.optional enableGui wrapQtAppsHook);
|
2019-01-08 22:00:58 +00:00
|
|
|
buildInputs
|
2024-06-19 06:22:00 +00:00
|
|
|
= [ boostPython eigen python3Packages.apycula ]
|
2019-08-30 20:02:40 +00:00
|
|
|
++ (lib.optional enableGui qtbase)
|
|
|
|
++ (lib.optional stdenv.cc.isClang llvmPackages.openmp);
|
2018-08-15 07:18:53 +00:00
|
|
|
|
2024-10-03 01:42:17 +00:00
|
|
|
cmakeFlags = let
|
|
|
|
# the specified version must always start with "nextpnr-", so add it if
|
|
|
|
# missing (e.g. if the user overrides with a git hash)
|
|
|
|
rev = main_src.rev;
|
|
|
|
version = if (lib.hasPrefix "nextpnr-" rev) then rev else "nextpnr-${rev}";
|
|
|
|
in ["-DCURRENT_GIT_VERSION=${version}"
|
2024-09-14 17:50:46 +00:00
|
|
|
"-DARCH=generic;ice40;ecp5;gowin;himbaechel"
|
2019-09-27 14:07:07 +00:00
|
|
|
"-DBUILD_TESTS=ON"
|
2021-01-03 11:32:11 +00:00
|
|
|
"-DICESTORM_INSTALL_PREFIX=${icestorm}"
|
2020-02-08 15:32:29 +00:00
|
|
|
"-DTRELLIS_INSTALL_PREFIX=${trellis}"
|
2020-07-13 11:18:51 +00:00
|
|
|
"-DTRELLIS_LIBDIR=${trellis}/lib/trellis"
|
2021-09-25 01:26:56 +00:00
|
|
|
"-DGOWIN_BBA_EXECUTABLE=${python3Packages.apycula}/bin/gowin_bba"
|
2019-04-15 05:02:35 +00:00
|
|
|
"-DUSE_OPENMP=ON"
|
2019-08-13 23:40:25 +00:00
|
|
|
# warning: high RAM usage
|
2021-01-03 11:32:11 +00:00
|
|
|
"-DSERIALIZE_CHIPDBS=OFF"
|
2024-09-14 17:50:46 +00:00
|
|
|
"-DHIMBAECHEL_GOWIN_DEVICES=all"
|
2019-09-02 17:49:12 +00:00
|
|
|
]
|
2021-01-03 11:32:11 +00:00
|
|
|
++ (lib.optional enableGui "-DBUILD_GUI=ON")
|
2019-09-02 17:49:12 +00:00
|
|
|
++ (lib.optional (enableGui && stdenv.hostPlatform.isDarwin)
|
|
|
|
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks");
|
2018-08-15 07:18:53 +00:00
|
|
|
|
2019-01-08 22:18:12 +00:00
|
|
|
patchPhase = with builtins; ''
|
2019-09-28 11:55:43 +00:00
|
|
|
# use PyPy for icestorm if enabled
|
2021-09-28 22:12:23 +00:00
|
|
|
substituteInPlace ./ice40/CMakeLists.txt \
|
2019-09-28 11:55:43 +00:00
|
|
|
--replace ''\'''${PYTHON_EXECUTABLE}' '${icestorm.pythonInterp}'
|
2019-01-08 22:18:12 +00:00
|
|
|
'';
|
|
|
|
|
2019-10-13 16:28:35 +00:00
|
|
|
preBuild = ''
|
treewide: noop: refer to `src.name` or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.
Also, similarly to d8f7f6a5cee067b81bfaaa3aa079adb94ed7c01e some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-08 17:18:01 +00:00
|
|
|
ln -s ../${test_src.name} tests
|
2019-10-13 16:28:35 +00:00
|
|
|
'';
|
|
|
|
|
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
|
2021-09-25 01:26:56 +00:00
|
|
|
wrapQtApp $out/bin/nextpnr-gowin
|
2024-09-14 17:50:46 +00:00
|
|
|
wrapQtApp $out/bin/nextpnr-himbaechel
|
2019-08-20 05:02:35 +00:00
|
|
|
'';
|
|
|
|
|
2024-01-24 12:00:47 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2019-08-20 05:02:35 +00:00
|
|
|
meta = with lib; {
|
2018-08-15 07:18:53 +00:00
|
|
|
description = "Place and route tool for FPGAs";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/yosyshq/nextpnr";
|
2018-08-15 07:18:53 +00:00
|
|
|
license = licenses.isc;
|
2019-09-02 17:49:12 +00:00
|
|
|
platforms = platforms.all;
|
2024-06-15 11:37:52 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2018-08-15 07:18:53 +00:00
|
|
|
};
|
|
|
|
}
|