2018-12-31 03:40:47 +00:00
|
|
|
{ stdenv, fetchurl, cmake, libGLU_combined, libX11, xorgproto, libXt
|
2016-09-29 16:37:34 +01:00
|
|
|
, qtLib ? null
|
|
|
|
# Darwin support
|
2016-10-02 05:59:26 +01:00
|
|
|
, Cocoa, CoreServices, DiskArbitration, IOKit, CFNetwork, Security, GLUT, OpenGL
|
2019-06-19 19:41:49 +01:00
|
|
|
, ApplicationServices, CoreText, IOSurface, ImageIO, xpc, libobjc }:
|
2012-10-16 22:19:59 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
2019-01-11 07:30:56 +00:00
|
|
|
majorVersion = "7.1";
|
|
|
|
minorVersion = "1";
|
2012-10-16 22:19:59 +01:00
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
in
|
2009-02-08 16:27:57 +00:00
|
|
|
|
2010-02-13 16:06:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-28 08:56:19 +00:00
|
|
|
name = "vtk-${os (qtLib != null) "qvtk-"}${version}";
|
2009-02-08 16:27:57 +00:00
|
|
|
src = fetchurl {
|
2016-07-25 09:42:13 +01:00
|
|
|
url = "${meta.homepage}files/release/${majorVersion}/VTK-${version}.tar.gz";
|
2019-01-11 07:30:56 +00:00
|
|
|
sha256 = "0nm7xwwj7rnsxjdv2ssviys8nhci4n9iiiqm2y14s520hl2dsp1d";
|
2009-02-08 16:27:57 +00:00
|
|
|
};
|
2013-05-09 11:23:21 +01:00
|
|
|
|
2019-06-19 19:41:49 +01:00
|
|
|
buildInputs = [ cmake ]
|
|
|
|
++ optional (qtLib != null) qtLib
|
|
|
|
++ optionals stdenv.isLinux [ libGLU_combined libX11 xorgproto libXt ]
|
|
|
|
++ optionals stdenv.isDarwin [ xpc Cocoa CoreServices DiskArbitration IOKit
|
|
|
|
CFNetwork Security ApplicationServices CoreText
|
|
|
|
IOSurface ImageIO OpenGL GLUT ];
|
|
|
|
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ libobjc ];
|
2016-09-29 16:37:34 +01:00
|
|
|
|
2012-10-16 22:19:59 +01:00
|
|
|
|
2016-07-25 09:42:13 +01:00
|
|
|
preBuild = ''
|
|
|
|
export LD_LIBRARY_PATH="$(pwd)/lib";
|
|
|
|
'';
|
|
|
|
|
2013-05-09 11:23:21 +01:00
|
|
|
# Shared libraries don't work, because of rpath troubles with the current
|
|
|
|
# nixpkgs camke approach. It wants to call a binary at build time, just
|
|
|
|
# built and requiring one of the shared objects.
|
|
|
|
# At least, we use -fPIC for other packages to be able to use this in shared
|
|
|
|
# objects.
|
2013-10-28 08:56:19 +00:00
|
|
|
cmakeFlags = [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" ]
|
2016-09-29 16:37:34 +01:00
|
|
|
++ optional (qtLib != null) [ "-DVTK_USE_QT:BOOL=ON" ]
|
2019-02-22 01:51:58 +00:00
|
|
|
++ optional stdenv.isDarwin "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks";
|
2016-09-29 16:37:34 +01:00
|
|
|
|
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
sed -i 's|COMMAND vtkHashSource|COMMAND "DYLD_LIBRARY_PATH=''${VTK_BINARY_DIR}/lib" ''${VTK_BINARY_DIR}/bin/vtkHashSource-7.0|' ./Parallel/Core/CMakeLists.txt
|
|
|
|
sed -i 's/fprintf(output, shift)/fprintf(output, "%s", shift)/' ./ThirdParty/libxml2/vtklibxml2/xmlschemas.c
|
|
|
|
sed -i 's/fprintf(output, shift)/fprintf(output, "%s", shift)/g' ./ThirdParty/libxml2/vtklibxml2/xpath.c
|
|
|
|
'';
|
2009-02-08 16:27:57 +00:00
|
|
|
|
2013-05-09 11:23:21 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-02-08 16:27:57 +00:00
|
|
|
meta = {
|
|
|
|
description = "Open source libraries for 3D computer graphics, image processing and visualization";
|
|
|
|
homepage = http://www.vtk.org/;
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2016-09-29 16:37:34 +01:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2009-02-08 16:27:57 +00:00
|
|
|
};
|
|
|
|
}
|