summary refs log tree commit diff
path: root/pkgs/development/libraries/vtk/default.nix
blob: ae0a5d1b4c53af31349c7cf318d9561b66c96339 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, cmake, mesa, libX11, xproto, libXt }:

stdenv.mkDerivation {
  name = "vtk-5.2.1";
  src = fetchurl {
    url = http://www.vtk.org/files/release/5.4/vtk-5.4.2.tar.gz;
    sha256 = "0gd7xlxiqww6xxcs2kicz0g6k147y3200np4jnsf10vlxs10az03";
  };
  buildInputs = [ cmake mesa libX11 xproto libXt ];

  meta = {
    description = "Open source libraries for 3D computer graphics, image processing and visualization";
    homepage = http://www.vtk.org/;
    license = "BSD";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}