3
0
Fork 0
forked from mirrors/nixpkgs

freecad: use python 3.7

PySide2 5.12 is broken under Python 3.8.
This commit is contained in:
Gabriel Ebner 2020-06-22 15:35:16 +02:00
parent d0ebf2d443
commit f67b81ecbd

View file

@ -19860,7 +19860,11 @@ in
fractal = callPackage ../applications/networking/instant-messengers/fractal { };
freecad = qt5.callPackage ../applications/graphics/freecad { mpi = openmpi; };
freecad = qt5.callPackage ../applications/graphics/freecad {
mpi = openmpi;
# pyside2 5.12 is broken under python 3.8
python3Packages = python37Packages;
};
freemind = callPackage ../applications/misc/freemind { };