mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
itk4: init at 4.13.1
This is exactly the same as we had prior to
e7b0c389c2
, which broke some dependents,
just under a new attribute name.
This commit is contained in:
parent
f5375412c9
commit
afceaee163
2 changed files with 36 additions and 0 deletions
34
pkgs/development/libraries/itk/4.x.nix
Normal file
34
pkgs/development/libraries/itk/4.x.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ stdenv, fetchurl, cmake, libX11, libuuid, xz, vtk }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "itk-4.13.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = mirror://sourceforge/itk/InsightToolkit-4.13.1.tar.xz;
|
||||||
|
sha256 = "0p4cspgbnjsnkjz8nfg092yaxz8qkqi2nkxjdv421d0zrmi0i2al";
|
||||||
|
};
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DBUILD_TESTING=OFF"
|
||||||
|
"-DBUILD_EXAMPLES=OFF"
|
||||||
|
"-DBUILD_SHARED_LIBS=ON"
|
||||||
|
"-DModule_ITKMINC=ON"
|
||||||
|
"-DModule_ITKIOMINC=ON"
|
||||||
|
"-DModule_ITKIOTransformMINC=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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -11410,6 +11410,8 @@ in
|
||||||
|
|
||||||
isso = callPackage ../servers/isso { };
|
isso = callPackage ../servers/isso { };
|
||||||
|
|
||||||
|
itk4 = callPackage ../development/libraries/itk/4.x.nix { };
|
||||||
|
|
||||||
itk = callPackage ../development/libraries/itk { };
|
itk = callPackage ../development/libraries/itk { };
|
||||||
|
|
||||||
jasper = callPackage ../development/libraries/jasper { };
|
jasper = callPackage ../development/libraries/jasper { };
|
||||||
|
|
Loading…
Reference in a new issue