mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
kicad: fix build
Fix configure time error:
...
ImportError: No module named wx
CMake Error at CMakeModules/FindwxPython.cmake:52 (message):
wxPython/Phoenix does not appear to be installed on the system
Only build tested.
Fixes: f7e28bf5d8
("Split buildPythonPackage into setup hooks")
This commit is contained in:
parent
0cf81af50c
commit
5af0d0b5da
@ -65,7 +65,7 @@ in stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
libGLU_combined zlib libX11 wxGTK pcre libXdmcp glew glm libpthreadstubs
|
libGLU_combined zlib libX11 wxGTK pcre libXdmcp glew glm libpthreadstubs
|
||||||
cairo curl openssl boost
|
cairo curl openssl boost
|
||||||
swig python
|
swig (python.withPackages (ps: with ps; [ wxPython ]))
|
||||||
] ++ optional (oceSupport) opencascade
|
] ++ optional (oceSupport) opencascade
|
||||||
++ optional (ngspiceSupport) libngspice;
|
++ optional (ngspiceSupport) libngspice;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user