2019-11-07 16:37:13 +00:00
|
|
|
{ stdenv, fetchurl, cmake, libGLU, libGL, libX11, xorgproto, libXt, libtiff
|
2020-03-13 22:12:34 +00:00
|
|
|
, fetchpatch
|
2016-09-29 16:37:34 +01:00
|
|
|
, qtLib ? null
|
2019-01-31 21:18:27 +00:00
|
|
|
, enablePython ? false, python ? null
|
2016-09-29 16:37:34 +01:00
|
|
|
# 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;
|
2020-05-10 21:21:26 +01:00
|
|
|
majorVersion = "8.2";
|
|
|
|
minorVersion = "0";
|
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";
|
2020-05-10 21:21:26 +01:00
|
|
|
sha256 = "1fspgp8k0myr6p2a6wkc21ldcswb4bvmb484m12mxgk1a9vxrhrl";
|
2009-02-08 16:27:57 +00:00
|
|
|
};
|
2013-05-09 11:23:21 +01:00
|
|
|
|
2019-09-24 14:57:05 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
buildInputs = [ libtiff ]
|
2020-05-10 21:21:26 +01:00
|
|
|
++ optionals (qtLib != null) (with qtLib; [ qtbase qtx11extras qttools ])
|
2019-11-07 16:37:13 +00:00
|
|
|
++ optionals stdenv.isLinux [ libGLU libGL libX11 xorgproto libXt ]
|
2019-06-19 19:41:49 +01:00
|
|
|
++ optionals stdenv.isDarwin [ xpc Cocoa CoreServices DiskArbitration IOKit
|
|
|
|
CFNetwork Security ApplicationServices CoreText
|
2019-01-31 21:18:27 +00:00
|
|
|
IOSurface ImageIO OpenGL GLUT ]
|
|
|
|
++ optional enablePython [
|
|
|
|
python
|
|
|
|
];
|
2019-06-19 19:41:49 +01:00
|
|
|
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ libobjc ];
|
2016-09-29 16:37:34 +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
|
2020-05-10 21:21:26 +01:00
|
|
|
# nixpkgs cmake approach. It wants to call a binary at build time, just
|
2013-05-09 11:23:21 +01:00
|
|
|
# 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.
|
2019-11-07 16:37:13 +00:00
|
|
|
cmakeFlags = [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" "-DVTK_USE_SYSTEM_TIFF=1" "-DOPENGL_INCLUDE_DIR=${libGL}/include" ]
|
2020-04-30 00:11:14 +01:00
|
|
|
++ optional (qtLib != null) [ "-DVTK_Group_Qt:BOOL=ON" ]
|
2019-01-31 21:18:27 +00:00
|
|
|
++ optional stdenv.isDarwin [ "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks" ]
|
|
|
|
++ optional enablePython [ "-DVTK_WRAP_PYTHON:BOOL=ON" ];
|
2016-09-29 16:37:34 +01:00
|
|
|
|
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
2020-04-27 23:23:44 +01:00
|
|
|
sed -i 's|COMMAND vtkHashSource|COMMAND "DYLD_LIBRARY_PATH=''${VTK_BINARY_DIR}/lib" ''${VTK_BINARY_DIR}/bin/vtkHashSource-${majorVersion}|' ./Parallel/Core/CMakeLists.txt
|
2016-09-29 16:37:34 +01:00
|
|
|
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";
|
2020-04-30 00:11:14 +01:00
|
|
|
homepage = "https://www.vtk.org/";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2020-03-13 22:12:34 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
|
2016-09-29 16:37:34 +01:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2009-02-08 16:27:57 +00:00
|
|
|
};
|
|
|
|
}
|