Merge pull request #26036 from bcdarwin/elastix

elastix: init at 4.8
This commit is contained in:
Benno Fünfstück 2017-07-15 20:15:44 +02:00 committed by GitHub
commit 063e81145d
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, cmake, itk, python }:
stdenv.mkDerivation rec {
_name = "elastix";
_version = "4.8";
name = "${_name}-${_version}";
src = fetchFromGitHub {
owner = "SuperElastix";
repo = "elastix";
rev = "ef057ff89233822b26b04b31c3c043af57d5deff";
sha256 = "0gm3a8dgqww50h6zld9ighjk92wlpybpimjwfz4s5h82vdjsvxrm";
};
nativeBuildInputs = [ cmake python ];
buildInputs = [ itk ];
cmakeFlags = [ "-DUSE_KNNGraphAlphaMutualInformationMetric=OFF" ];
checkPhase = "ctest";
meta = with stdenv.lib; {
homepage = http://elastix.isi.uu.nl/;
description = "Image registration toolkit based on ITK";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
license = licenses.asl20;
};
}

View file

@ -7654,6 +7654,8 @@ with pkgs;
vmmlib = callPackage ../development/libraries/vmmlib {};
elastix = callPackage ../development/libraries/science/biology/elastix { };
enchant = callPackage ../development/libraries/enchant { };
enet = callPackage ../development/libraries/enet { };