2014-03-14 23:28:49 +01:00
|
|
|
{stdenv, fetchurl, cmake, libX11, libuuid, xz, sharedLibs ? false}:
|
2010-03-02 00:31:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-14 23:28:49 +01:00
|
|
|
name = "itk${stdenv.lib.optionalString sharedLibs ''-shared''}-4.0.0";
|
2010-03-02 00:31:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-26 22:23:59 +01:00
|
|
|
url = mirror://sourceforge/itk/InsightToolkit-4.0.0.tar.xz;
|
|
|
|
sha256 = "05z49sw612cbyiaghcsda0xylrkf06jh81ql79si5632w1hpgbd9";
|
2010-03-02 00:31:35 +01:00
|
|
|
};
|
|
|
|
|
2014-03-14 23:28:49 +01:00
|
|
|
cmakeFlags = [ "-DBUILD_TESTING=OFF" "-DBUILD_EXAMPLES=OFF" ]
|
|
|
|
++ stdenv.lib.optional sharedLibs [
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
"-DCMAKE_CXX_FLAGS=-fPIC"
|
|
|
|
];
|
2010-03-02 00:31:35 +01:00
|
|
|
|
2012-02-26 22:23:59 +01:00
|
|
|
enableParallelBuilding = true;
|
2010-03-02 00:31:35 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ cmake xz ];
|
2012-02-26 22:23:59 +01:00
|
|
|
buildInputs = [ libX11 libuuid ];
|
2010-03-02 00:31:35 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Insight Segmentation and Registration Toolkit";
|
|
|
|
homepage = http://www.itk.org/;
|
|
|
|
license = "BSD";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|