freecad: 0.19.1 -> 0.19.2

This commit is contained in:
Peter Hoeg 2021-05-10 14:46:37 +08:00
parent 6358647558
commit 77447c96ca

View File

@ -46,13 +46,13 @@
mkDerivation rec {
pname = "freecad";
version = "0.19.1";
version = "0.19.2";
src = fetchFromGitHub {
owner = "FreeCAD";
repo = "FreeCAD";
rev = version;
hash = "sha256-itIrO+/mKXOPNs+2POKT8u4YZuqx/QAwVBWrHgKP1qQ=";
hash = "sha256-XZ+fRl3CPCIFu3nHeMTLibwwFBlG/cWpKJlI58hTAuU=";
};
nativeBuildInputs = [
@ -102,6 +102,7 @@ mkDerivation rec {
];
cmakeFlags = [
"-Wno-dev" # turns off warnings which otherwise makes it hard to see what is going on
"-DBUILD_FLAT_MESH:BOOL=ON"
"-DBUILD_QT5=ON"
"-DSHIBOKEN_INCLUDE_DIR=${shiboken2}/include"
@ -110,7 +111,7 @@ mkDerivation rec {
+ ";${pyside2}/include/PySide2/QtCore"
+ ";${pyside2}/include/PySide2/QtWidgets"
+ ";${pyside2}/include/PySide2/QtGui"
)
)
"-DPYSIDE_LIBRARY=PySide2::pyside2"
];