2017-04-07 12:23:08 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, cmake, libX11, libuuid, xz, vtk }:
|
2010-03-01 23:31:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-07 12:23:08 +00:00
|
|
|
name = "itk-4.11.0";
|
2010-03-01 23:31:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-04-07 12:23:08 +00:00
|
|
|
url = mirror://sourceforge/itk/InsightToolkit-4.11.0.tar.xz;
|
|
|
|
sha256 = "0axvyds0gads5914g0m70z5q16gzghr0rk0hy3qjpf1k9bkxvcq6";
|
2010-03-01 23:31:35 +00:00
|
|
|
};
|
|
|
|
|
2017-04-07 12:23:08 +00:00
|
|
|
# Clang 4 dislikes signed comparisons of pointers against integers. Should no longer be
|
|
|
|
# necessary once we get past ITK 4.11.
|
|
|
|
patches = [ (fetchpatch {
|
|
|
|
url = "https://github.com/InsightSoftwareConsortium/ITK/commit/d1407a55910ad9c232f3d241833cfd2e59024946.patch";
|
|
|
|
sha256 = "0h851afkv23fwgkibjss30fkbz4nkfg6rmmm4pfvkwpml23gzz7s";
|
|
|
|
}) ];
|
|
|
|
|
2014-03-15 00:18:17 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_TESTING=OFF"
|
|
|
|
"-DBUILD_EXAMPLES=OFF"
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
2017-03-02 01:55:42 +00:00
|
|
|
"-DModule_ITKIOMINC=ON"
|
|
|
|
"-DModule_ITKVtkGlue=ON"
|
|
|
|
"-DModule_ITKReview=ON"
|
2014-03-14 22:28:49 +00:00
|
|
|
];
|
2010-03-01 23:31:35 +00:00
|
|
|
|
2012-02-26 21:23:59 +00:00
|
|
|
enableParallelBuilding = true;
|
2010-03-01 23:31:35 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake xz ];
|
2017-03-02 01:55:42 +00:00
|
|
|
buildInputs = [ libX11 libuuid vtk ];
|
2010-03-01 23:31:35 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Insight Segmentation and Registration Toolkit";
|
|
|
|
homepage = http://www.itk.org/;
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2010-03-01 23:31:35 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2017-03-15 12:41:20 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2010-03-01 23:31:35 +00:00
|
|
|
};
|
|
|
|
}
|