mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ stdenv, fetchurl, cmake, coin3d, xercesc, ode, eigen, qt4, opencascade, gts
|
|
, boost, zlib, python27Packages, swig, gfortran, soqt, libf2c, makeWrapper }:
|
|
|
|
let
|
|
pythonPackages = python27Packages;
|
|
in stdenv.mkDerivation rec {
|
|
name = "freecad-${version}";
|
|
version = "0.16.6712";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/FreeCAD/FreeCAD/archive/${version}.tar.gz";
|
|
sha256 = "14hs26gvv7gbg9misxq34v4nrds2sbxjhj4yyw5kq3zbvl517alp";
|
|
};
|
|
|
|
buildInputs = with pythonPackages; [ cmake coin3d xercesc ode eigen qt4 opencascade gts boost
|
|
zlib python swig gfortran soqt libf2c makeWrapper matplotlib
|
|
pycollada pyside pysideShiboken pysideTools pivy
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# 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
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/FreeCAD --prefix PYTHONPATH : $PYTHONPATH \
|
|
--set COIN_GL_NO_CURRENT_CONTEXT_CHECK 1
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "General purpose Open Source 3D CAD/MCAD/CAx/CAE/PLM modeler";
|
|
homepage = https://www.freecadweb.org/;
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = [ maintainers.viric ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|