Adding vtk-5.2.1, The Visualization Toolkit.
svn path=/nixpkgs/trunk/; revision=14006
This commit is contained in:
parent
97d0f21d03
commit
863e9181d5
16
pkgs/development/libraries/vtk/default.nix
Normal file
16
pkgs/development/libraries/vtk/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -3879,6 +3879,11 @@ let
|
|||||||
inherit postgresql mysql sqlite;
|
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 {
|
vxl = import ../development/libraries/vxl {
|
||||||
inherit fetchurl stdenv cmake unzip libtiff expat zlib libpng libjpeg;
|
inherit fetchurl stdenv cmake unzip libtiff expat zlib libpng libjpeg;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user