nixpkgs/pkgs/development/libraries/vtk/default.nix

68 lines
2.7 KiB
Nix
Raw Normal View History

2019-11-07 16:37:13 +00:00
{ stdenv, fetchurl, cmake, libGLU, libGL, libX11, xorgproto, libXt, libtiff
, fetchpatch
2016-09-29 15:37:34 +00:00
, qtLib ? null
2019-01-31 21:18:27 +00:00
, enablePython ? false, python ? null
2016-09-29 15:37:34 +00:00
# Darwin support
2016-10-02 04:59:26 +00:00
, Cocoa, CoreServices, DiskArbitration, IOKit, CFNetwork, Security, GLUT, OpenGL
2019-06-19 18:41:49 +00:00
, ApplicationServices, CoreText, IOSurface, ImageIO, xpc, libobjc }:
with stdenv.lib;
let
os = stdenv.lib.optionalString;
majorVersion = "8.2";
minorVersion = "0";
version = "${majorVersion}.${minorVersion}";
in
stdenv.mkDerivation rec {
name = "vtk-${os (qtLib != null) "qvtk-"}${version}";
src = fetchurl {
2016-07-25 08:42:13 +00:00
url = "${meta.homepage}files/release/${majorVersion}/VTK-${version}.tar.gz";
sha256 = "1fspgp8k0myr6p2a6wkc21ldcswb4bvmb484m12mxgk1a9vxrhrl";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libtiff ]
++ 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 18:41:49 +00: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 18:41:49 +00:00
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ libobjc ];
2016-09-29 15:37:34 +00:00
2016-07-25 08:42:13 +00:00
preBuild = ''
export LD_LIBRARY_PATH="$(pwd)/lib";
'';
# Shared libraries don't work, because of rpath troubles with the current
# nixpkgs cmake 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.
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" ]
++ 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 15:37:34 +00:00
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
2020-04-27 22:23:44 +00: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 15:37:34 +00: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
'';
enableParallelBuilding = true;
meta = {
description = "Open source libraries for 3D computer graphics, image processing and visualization";
homepage = "https://www.vtk.org/";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
2016-09-29 15:37:34 +00:00
platforms = with stdenv.lib.platforms; unix;
};
}