{stdenv, fetchurl, cmake, libX11, libuuid, xz}: 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" ]; enableParallelBuilding = true; nativeBuildInputs = [ cmake xz ]; buildInputs = [ libX11 libuuid ]; 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; }; }