2013-12-14 10:35:43 +00:00
|
|
|
{ stdenv, fetchurl, cmake, coin3d, xercesc, ode, eigen, qt4, opencascade, gts
|
2018-07-11 10:09:00 +01:00
|
|
|
, hdf5, vtk, medfile, zlib, python27Packages, swig, gfortran, fetchpatch
|
2018-05-27 16:22:24 +01:00
|
|
|
, soqt, libf2c, makeWrapper, makeDesktopItem
|
|
|
|
, mpi ? null }:
|
|
|
|
|
|
|
|
assert mpi != null;
|
2011-03-02 17:18:30 +00:00
|
|
|
|
2016-09-25 21:32:09 +01:00
|
|
|
let
|
|
|
|
pythonPackages = python27Packages;
|
|
|
|
in stdenv.mkDerivation rec {
|
2011-03-02 17:18:30 +00:00
|
|
|
name = "freecad-${version}";
|
2019-04-20 10:44:56 +01:00
|
|
|
version = "0.18.1";
|
2011-03-02 17:18:30 +00:00
|
|
|
|
2013-05-30 08:51:07 +01:00
|
|
|
src = fetchurl {
|
2016-07-07 08:24:49 +01:00
|
|
|
url = "https://github.com/FreeCAD/FreeCAD/archive/${version}.tar.gz";
|
2019-04-20 10:44:56 +01:00
|
|
|
sha256 = "0lamrs84zv99v4z7yi6d9amjmnh7r6frairc2aajgfic380720bc";
|
2011-03-02 17:18:30 +00:00
|
|
|
};
|
|
|
|
|
2018-07-11 10:09:00 +01:00
|
|
|
buildInputs = [ cmake coin3d xercesc ode eigen qt4 opencascade gts
|
2018-06-23 10:02:23 +01:00
|
|
|
zlib swig gfortran soqt libf2c makeWrapper mpi vtk hdf5 medfile
|
|
|
|
] ++ (with pythonPackages; [
|
|
|
|
matplotlib pycollada pyside pysideShiboken pysideTools pivy python boost
|
|
|
|
]);
|
|
|
|
|
2011-03-03 13:41:10 +00:00
|
|
|
enableParallelBuilding = true;
|
2011-03-02 17:18:30 +00:00
|
|
|
|
2011-03-05 22:27:55 +00:00
|
|
|
# This should work on both x86_64, and i686 linux
|
2011-03-04 09:48:33 +00:00
|
|
|
preBuild = ''
|
2015-01-15 04:59:10 +00:00
|
|
|
export NIX_LDFLAGS="-L${gfortran.cc}/lib64 -L${gfortran.cc}/lib $NIX_LDFLAGS";
|
2011-03-04 09:48:33 +00:00
|
|
|
'';
|
|
|
|
|
2015-11-18 13:58:54 +00:00
|
|
|
# Their main() removes PYTHONPATH=, and we rely on it.
|
|
|
|
preConfigure = ''
|
|
|
|
sed '/putenv("PYTHONPATH/d' -i src/Main/MainGui.cpp
|
|
|
|
'';
|
|
|
|
|
2011-03-05 22:27:51 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/FreeCAD --prefix PYTHONPATH : $PYTHONPATH \
|
|
|
|
--set COIN_GL_NO_CURRENT_CONTEXT_CHECK 1
|
|
|
|
'';
|
2019-04-20 10:44:56 +01:00
|
|
|
|
2014-08-03 11:02:27 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-03-03 13:41:10 +00:00
|
|
|
description = "General purpose Open Source 3D CAD/MCAD/CAx/CAE/PLM modeler";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://www.freecadweb.org/;
|
2014-08-03 11:02:27 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = [ maintainers.viric ];
|
|
|
|
platforms = platforms.linux;
|
2011-03-03 13:41:10 +00:00
|
|
|
};
|
2011-03-02 17:18:30 +00:00
|
|
|
}
|