3
0
Fork 0
forked from mirrors/nixpkgs

Adding vtk-5.2.1, The Visualization Toolkit.

svn path=/nixpkgs/trunk/; revision=14006
This commit is contained in:
Lluís Batlle i Rossell 2009-02-08 16:27:57 +00:00
parent 97d0f21d03
commit 863e9181d5
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{stdenv, fetchurl, cmake, mesa, libX11, xproto, libXt }:
stdenv.mkDerivation {
name = "vtk-5.2.1";
src = fetchurl {
url = http://www.vtk.org/files/release/5.2/vtk-5.2.1.tar.gz;
sha256 = "c81521b3767a044745336212cbde500d6e97a1f8ba647bc590857e36f57003bb";
};
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";
};
}

View file

@ -3879,6 +3879,11 @@ let
inherit postgresql mysql sqlite;
});
vtk = import /root/nix/vtk/default.nix {
inherit stdenv fetchurl cmake mesa;
inherit (xlibs) libX11 xproto libXt;
};
vxl = import ../development/libraries/vxl {
inherit fetchurl stdenv cmake unzip libtiff expat zlib libpng libjpeg;
};