Stating me as maintainer of packages I maintain.
[nixpkgs-libre.git] / pkgs / development / libraries / opencascade / default.nix
blobde3b9f32cf388918429ad526619dde57d61e6058
1 {stdenv, fetchurl, mesa, qt4, tcl, tk}:
3 stdenv.mkDerivation {
4   name = "opencascade-6.3.0";
5   src = fetchurl {
6     url = http://files.opencascade.com/OCC_6.3_release/OpenCASCADE_src.tgz;
7     md5 = "52778127974cb3141c2827f9d40d1f11";
8   };
10   buildInputs = [ mesa qt4 tcl tk];
12   preConfigure = "cd ros";
14   meta = {
15     description = "Open CASCADE Technology, libraries for 3D modeling and numerical simulation";
16     homepage = http://www.opencascade.org/;
17     maintainers = with stdenv.lib.maintainers; [viric];
18     platforms = with stdenv.lib.platforms; linux;
19   };