4d5f33deff
ANTs: init at 2.1.0 (0gyys1lf) and update ITK accordingly
33 lines
844 B
Nix
33 lines
844 B
Nix
{ stdenv, fetchurl, cmake, libX11, libuuid, xz, vtk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "itk-4.10.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/itk/InsightToolkit-4.10.0.tar.xz;
|
|
sha256 = "0pxijhqsnwcp9jv1d8p11hsj90k8ajpwxhrnn8kk8c56k7y1207a";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_TESTING=OFF"
|
|
"-DBUILD_EXAMPLES=OFF"
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DModule_ITKIOMINC=ON"
|
|
"-DModule_ITKVtkGlue=ON"
|
|
"-DModule_ITKReview=ON"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ cmake xz ];
|
|
buildInputs = [ libX11 libuuid vtk ];
|
|
|
|
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;
|
|
};
|
|
}
|