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

35 lines
919 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, cmake, libX11, libuuid, xz, vtk }:
stdenv.mkDerivation rec {
name = "itk-4.13.0";
src = fetchurl {
url = mirror://sourceforge/itk/InsightToolkit-4.13.0.tar.xz;
sha256 = "09d1gmqx3wbdfgwf7r91r12m2vknviv0i8wxwh2q9w1vrpizrczy";
};
cmakeFlags = [
"-DBUILD_TESTING=OFF"
"-DBUILD_EXAMPLES=OFF"
"-DBUILD_SHARED_LIBS=ON"
2017-09-26 21:59:53 +00:00
"-DModule_ITKMINC=ON"
2017-03-02 01:55:42 +00:00
"-DModule_ITKIOMINC=ON"
2017-09-26 21:59:53 +00:00
"-DModule_ITKIOTransformMINC=ON"
2017-03-02 01:55:42 +00:00
"-DModule_ITKVtkGlue=ON"
"-DModule_ITKReview=ON"
2014-03-14 22:28:49 +00:00
];
enableParallelBuilding = true;
nativeBuildInputs = [ cmake xz ];
2017-03-02 01:55:42 +00:00
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];
2017-03-15 12:41:20 +00:00
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}