summary refs log tree commit diff
path: root/pkgs/development/libraries/opencascade/default.nix
blob: 2f178edccd5e4481037efcd05618c023d721e7da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{stdenv, fetchurl, mesa, qt4, tcl, tk}:

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 qt4 tcl tk];

  preConfigure = "cd ros";

  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;
  };
}