2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
47 lines
933 B
Nix
47 lines
933 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, swig4
|
|
, lua
|
|
, elastix
|
|
, itk
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "simpleitk";
|
|
version = "2.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SimpleITK";
|
|
repo = "SimpleITK";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-JmZUlIdcCQ9yEqxoUwRaxvr/Q7xZm41QA3mtDtoSdyI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
swig4
|
|
];
|
|
buildInputs = [
|
|
elastix
|
|
lua
|
|
itk
|
|
];
|
|
|
|
# 2.0.0: linker error building examples
|
|
cmakeFlags = [
|
|
"-DBUILD_EXAMPLES=OFF"
|
|
"-DBUILD_SHARED_LIBS=OFF"
|
|
"-DSimpleITK_USE_ELASTIX=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.simpleitk.org";
|
|
description = "Simplified interface to ITK";
|
|
changelog = "https://github.com/SimpleITK/SimpleITK/releases/tag/v${finalAttrs.version}";
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.asl20;
|
|
};
|
|
})
|