nixpkgs/pkgs/development/libraries/opencascade/default.nix
Lluís Batlle i Rossell a13774ecfe Making opencascade build its visualization, DRAW, and WOK libraries/tools.
svn path=/nixpkgs/trunk/; revision=20193
2010-02-23 14:20:10 +00:00

31 lines
805 B
Nix

{stdenv, fetchurl, mesa, tcl, tk, file, libXmu}:
stdenv.mkDerivation rec {
name = "opencascade-6.3.0";
src = fetchurl {
url = http://files.opencascade.com/OCC_6.3_release/OpenCASCADE_src.tgz;
md5 = "52778127974cb3141c2827f9d40d1f11";
};
buildInputs = [ mesa tcl tk file libXmu ];
preConfigure = ''
cd ros
'';
configureFlags = [ "--with-tcl=${tcl}/lib" "--with-tk=${tk}/lib" ];
postInstall = ''
mv $out/inc $out/include
ensureDir $out/share/doc/${name}
cp -R ../doc $out/share/doc/${name}
'';
meta = {
description = "Open CASCADE Technology, libraries for 3D modeling and numerical simulation";
homepage = http://www.opencascade.org/;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}