mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 14:57:28 +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 = [
|
||||
libGLU_combined zlib libX11 wxGTK pcre libXdmcp glew glm libpthreadstubs
|
||||
cairo curl openssl boost
|
||||
swig python
|
||||
swig (python.withPackages (ps: with ps; [ wxPython ]))
|
||||
] ++ optional (oceSupport) opencascade
|
||||
++ optional (ngspiceSupport) libngspice;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user