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