elastix: init at 4.8
This commit is contained in:
parent
7bb98bb02c
commit
b21805d972
@ -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;
|
||||
};
|
||||
}
|
@ -7520,6 +7520,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user