nixpkgs/pkgs/applications/graphics/freecad/default.nix

79 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, mkDerivation, fetchFromGitHub, fetchpatch, cmake, ninja, coin3d,
2020-09-26 13:08:13 +03:00
xercesc, ode, eigen, qtbase, qttools, qtwebengine, qtxmlpatterns, wrapQtAppsHook,
2020-06-05 07:16:52 +03:00
opencascade-occt, gts, hdf5, vtk, medfile, zlib, python3Packages, swig,
gfortran, libXmu, soqt, libf2c, libGLU, makeWrapper, pkg-config, mpi ? null }:
2018-05-27 18:22:24 +03:00
assert mpi != null;
let
2019-06-15 19:44:59 +03:00
pythonPackages = python3Packages;
2019-08-09 14:39:10 +03:00
in mkDerivation rec {
2020-09-26 13:08:13 +03:00
pname = "freecad-unstable";
2020-12-08 18:32:26 +03:00
version = "2020-12-08";
2019-11-03 16:14:35 +03:00
src = fetchFromGitHub {
owner = "FreeCAD";
repo = "FreeCAD";
2020-12-08 18:32:26 +03:00
rev = "daea30341ea2d5eaf2bfb65614128a5fa2abc8b7";
sha256 = "1fza64lygqq35v7kzgqmiq5dvl5rpgkhlzv06f9dszdz44hznina";
};
2020-06-05 07:16:52 +03:00
nativeBuildInputs = [
cmake
ninja
pkg-config
2020-06-05 07:16:52 +03:00
pythonPackages.pyside2-tools
wrapQtAppsHook
];
buildInputs = [
coin3d xercesc ode eigen opencascade-occt gts
2019-06-15 19:44:59 +03:00
zlib swig gfortran soqt libf2c makeWrapper mpi vtk hdf5 medfile
2020-09-26 13:08:13 +03:00
libGLU libXmu qtbase qttools qtwebengine qtxmlpatterns
] ++ (with pythonPackages; [
2019-06-15 19:44:59 +03:00
matplotlib pycollada shiboken2 pyside2 pyside2-tools pivy python boost
GitPython # for addon manager
scipy pyyaml # (at least for) PyrateWorkbench
2018-06-23 12:02:23 +03:00
]);
2019-06-15 19:44:59 +03:00
cmakeFlags = [
"-DBUILD_QT5=ON"
"-DSHIBOKEN_INCLUDE_DIR=${pythonPackages.shiboken2}/include"
"-DSHIBOKEN_LIBRARY=Shiboken2::libshiboken"
("-DPYSIDE_INCLUDE_DIR=${pythonPackages.pyside2}/include"
+ ";${pythonPackages.pyside2}/include/PySide2/QtCore"
+ ";${pythonPackages.pyside2}/include/PySide2/QtWidgets"
+ ";${pythonPackages.pyside2}/include/PySide2/QtGui"
)
"-DPYSIDE_LIBRARY=PySide2::pyside2"
];
# This should work on both x86_64, and i686 linux
preBuild = ''
export NIX_LDFLAGS="-L${gfortran.cc}/lib64 -L${gfortran.cc}/lib $NIX_LDFLAGS";
'';
# Their main() removes PYTHONPATH=, and we rely on it.
preConfigure = ''
sed '/putenv("PYTHONPATH/d' -i src/Main/MainGui.cpp
2019-08-09 14:39:10 +03:00
qtWrapperArgs+=(--prefix PYTHONPATH : "$PYTHONPATH")
'';
2019-08-09 14:39:10 +03:00
qtWrapperArgs = [
"--set COIN_GL_NO_CURRENT_CONTEXT_CHECK 1"
];
postFixup = ''
mv $out/share/doc $out
'';
2019-06-15 19:44:59 +03:00
meta = with lib; {
description = "General purpose Open Source 3D CAD/MCAD/CAx/CAE/PLM modeler";
2019-08-09 14:39:10 +03:00
homepage = "https://www.freecadweb.org/";
license = licenses.lgpl2Plus;
2019-08-09 14:39:10 +03:00
maintainers = with maintainers; [ viric gebner ];
platforms = platforms.linux;
};
}