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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

168 lines
3.5 KiB
Nix
Raw Normal View History

2021-03-16 13:45:22 +01:00
{ lib
2021-04-02 16:07:34 +02:00
, stdenv
2021-03-16 13:45:22 +01:00
, mkDerivation
, fetchFromGitHub
, fetchpatch
, cmake
, ninja
, GitPython
, boost
, coin3d
, eigen
, gfortran
, gts
, hdf5
, libGLU
, libXmu
, libf2c
, libredwg
2021-03-16 13:45:22 +01:00
, libspnav
, matplotlib
, medfile
, mpi
, ode
, opencascade-occt
, pivy
, pkg-config
2021-05-22 05:07:55 +02:00
, ply
2021-03-16 13:45:22 +01:00
, pycollada
, pyside2
, pyside2-tools
, python
, pyyaml
, qtbase
, qttools
, qtwebengine
, qtx11extras
, qtxmlpatterns
, scipy
, shiboken2
, soqt
2021-04-02 16:07:34 +02:00
, spaceNavSupport ? stdenv.isLinux
2021-03-16 13:45:22 +01:00
, swig
, vtk
, wrapQtAppsHook
, xercesc
, zlib
}:
2021-03-16 13:45:22 +01:00
mkDerivation rec {
pname = "freecad";
2021-05-10 08:46:37 +02:00
version = "0.19.2";
2019-11-03 14:14:35 +01:00
src = fetchFromGitHub {
owner = "FreeCAD";
repo = "FreeCAD";
2021-03-16 13:45:22 +01:00
rev = version;
2021-05-10 08:46:37 +02:00
hash = "sha256-XZ+fRl3CPCIFu3nHeMTLibwwFBlG/cWpKJlI58hTAuU=";
};
2020-06-05 06:16:52 +02:00
nativeBuildInputs = [
cmake
ninja
pkg-config
2021-03-16 13:45:22 +01:00
pyside2-tools
gfortran
2020-06-05 06:16:52 +02:00
wrapQtAppsHook
];
buildInputs = [
GitPython # for addon manager
2021-03-16 13:45:22 +01:00
boost
coin3d
eigen
gts
hdf5
libGLU
libXmu
libf2c
matplotlib
medfile
mpi
ode
opencascade-occt
pivy
2021-05-22 05:07:55 +02:00
ply # for openSCAD file support
2021-03-16 13:45:22 +01:00
pycollada
pyside2
pyside2-tools
python
pyyaml # (at least for) PyrateWorkbench
qtbase
qttools
qtwebengine
qtxmlpatterns
scipy
shiboken2
soqt
swig
vtk
xercesc
zlib
] ++ lib.optionals spaceNavSupport [
libspnav
qtx11extras
];
2018-06-23 11:02:23 +02:00
2019-06-15 18:44:59 +02:00
cmakeFlags = [
2021-05-10 08:46:37 +02:00
"-Wno-dev" # turns off warnings which otherwise makes it hard to see what is going on
"-DBUILD_FLAT_MESH:BOOL=ON"
2019-06-15 18:44:59 +02:00
"-DBUILD_QT5=ON"
2021-03-16 13:45:22 +01:00
"-DSHIBOKEN_INCLUDE_DIR=${shiboken2}/include"
2019-06-15 18:44:59 +02:00
"-DSHIBOKEN_LIBRARY=Shiboken2::libshiboken"
2021-03-16 13:45:22 +01:00
("-DPYSIDE_INCLUDE_DIR=${pyside2}/include"
+ ";${pyside2}/include/PySide2/QtCore"
+ ";${pyside2}/include/PySide2/QtWidgets"
+ ";${pyside2}/include/PySide2/QtGui"
2021-05-10 08:46:37 +02:00
)
2019-06-15 18:44:59 +02:00
"-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 13:39:10 +02:00
qtWrapperArgs+=(--prefix PYTHONPATH : "$PYTHONPATH")
'';
2019-08-09 13:39:10 +02:00
qtWrapperArgs = [
"--set COIN_GL_NO_CURRENT_CONTEXT_CHECK 1"
"--prefix PATH : ${libredwg}/bin"
2019-08-09 13:39:10 +02:00
];
postFixup = ''
mv $out/share/doc $out
ln -s $out/bin/FreeCAD $out/bin/freecad
ln -s $out/bin/FreeCADCmd $out/bin/freecadcmd
'';
2019-06-15 18:44:59 +02:00
meta = with lib; {
2019-08-09 13:39:10 +02:00
homepage = "https://www.freecadweb.org/";
2021-03-16 13:45:22 +01:00
description = "General purpose Open Source 3D CAD/MCAD/CAx/CAE/PLM modeler";
longDescription = ''
FreeCAD is an open-source parametric 3D modeler made primarily to design
real-life objects of any size. Parametric modeling allows you to easily
modify your design by going back into your model history and changing its
parameters.
FreeCAD allows you to sketch geometry constrained 2D shapes and use them
as a base to build other objects. It contains many components to adjust
dimensions or extract design details from 3D models to create high quality
production ready drawings.
FreeCAD is designed to fit a wide range of uses including product design,
mechanical engineering and architecture. Whether you are a hobbyist, a
programmer, an experienced CAD user, a student or a teacher, you will feel
right at home with FreeCAD.
'';
license = licenses.lgpl2Plus;
2021-03-16 13:45:22 +01:00
maintainers = with maintainers; [ viric gebner AndersonTorres ];
platforms = platforms.linux;
};
}