5e716bf469
- also create vtk_7 as several packages don't build with 8.x: - itk5: vtkVersion.h header not found at compile time - ants: version in tree (2.2.0) is incompatible with 8.2 - itk4: ants depends on both vtk and itk4, so use vtk_7 - gdcm: vtk header issue - python3Packages.vtk: Python C API compilation error with Python 3.8 - upgrade vtkWithQt4 -> vtkWithQt5
35 lines
915 B
Nix
35 lines
915 B
Nix
{ stdenv, fetchurl, cmake, libX11, libuuid, xz, vtk_7 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "itk-4.13.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/itk/InsightToolkit-4.13.2.tar.xz";
|
|
sha256 = "19cgfpd63gqrvc3m27m394gy2d7w79g5y6lvznb5qqr49lihbgns";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_TESTING=OFF"
|
|
"-DBUILD_EXAMPLES=OFF"
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DModule_ITKMINC=ON"
|
|
"-DModule_ITKIOMINC=ON"
|
|
"-DModule_ITKIOTransformMINC=ON"
|
|
"-DModule_ITKVtkGlue=ON"
|
|
"-DModule_ITKReview=ON"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ cmake xz ];
|
|
buildInputs = [ libX11 libuuid vtk_7 ];
|
|
|
|
meta = {
|
|
description = "Insight Segmentation and Registration Toolkit";
|
|
homepage = "http://www.itk.org/";
|
|
license = stdenv.lib.licenses.asl20;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|