summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2023-03-22 13:56:07 -0400
committerBen Darwin <bcdarwin@gmail.com>2023-03-24 14:20:12 -0400
commit39fb426da55f30b021844f0e8bddd5f2ffb76b8e (patch)
treea37ec3dc7eb25a5d0d444249e0456a7a60cff26b
parent120a484726d7789582dfa1fff4a3f579f389e36c (diff)
downloadnixpkgs-39fb426da55f30b021844f0e8bddd5f2ffb76b8e.tar
nixpkgs-39fb426da55f30b021844f0e8bddd5f2ffb76b8e.tar.gz
nixpkgs-39fb426da55f30b021844f0e8bddd5f2ffb76b8e.tar.bz2
nixpkgs-39fb426da55f30b021844f0e8bddd5f2ffb76b8e.tar.lz
nixpkgs-39fb426da55f30b021844f0e8bddd5f2ffb76b8e.tar.xz
nixpkgs-39fb426da55f30b021844f0e8bddd5f2ffb76b8e.tar.zst
nixpkgs-39fb426da55f30b021844f0e8bddd5f2ffb76b8e.zip
itk: enable SimpleITKFilters; minor refactor
This is needed for the SimpleITK Python package to import successfully
rather than throw an error due to missing symbols.
-rw-r--r--pkgs/development/libraries/itk/generic.nix21
1 files changed, 16 insertions, 5 deletions
diff --git a/pkgs/development/libraries/itk/generic.nix b/pkgs/development/libraries/itk/generic.nix
index 78f4d56bfac..3a6b2afee0d 100644
--- a/pkgs/development/libraries/itk/generic.nix
+++ b/pkgs/development/libraries/itk/generic.nix
@@ -3,10 +3,7 @@
 { lib, stdenv, fetchFromGitHub, cmake, makeWrapper
 , pkg-config, libX11, libuuid, xz, vtk, Cocoa }:
 
-stdenv.mkDerivation rec {
-  pname = "itk";
-  inherit version;
-
+let
   itkGenericLabelInterpolatorSrc = fetchFromGitHub {
     owner = "InsightSoftwareConsortium";
     repo = "ITKGenericLabelInterpolator";
@@ -21,6 +18,18 @@ stdenv.mkDerivation rec {
     hash = "sha256-deJbza36c0Ohf9oKpO2T4po37pkyI+2wCSeGL4r17Go=";
   };
 
+  itkSimpleITKFiltersSrc = fetchFromGitHub {
+    owner = "InsightSoftwareConsortium";
+    repo = "ITKSimpleITKFilters";
+    rev = "bb896868fc6480835495d0da4356d5db009592a6";
+    hash = "sha256-MfaIA0xxA/pzUBSwnAevr17iR23Bo5iQO2cSyknS3o4=";
+  };
+in
+
+stdenv.mkDerivation {
+  pname = "itk";
+  inherit version;
+
   src = fetchFromGitHub {
     owner = "InsightSoftwareConsortium";
     repo = "ITK";
@@ -36,6 +45,7 @@ stdenv.mkDerivation rec {
       --replace "@OPENJPEG_INSTALL_LIB_DIR@" "@OPENJPEG_INSTALL_FULL_LIB_DIR@"
     ln -sr ${itkGenericLabelInterpolatorSrc} Modules/External/ITKGenericLabelInterpolator
     ln -sr ${itkAdaptiveDenoisingSrc} Modules/External/ITKAdaptiveDenoising
+    ln -sr ${itkSimpleITKFiltersSrc} Modules/External/ITKSimpleITKFilters
   '';
 
   cmakeFlags = [
@@ -45,6 +55,7 @@ stdenv.mkDerivation rec {
     "-DModule_ITKMINC=ON"
     "-DModule_ITKIOMINC=ON"
     "-DModule_ITKIOTransformMINC=ON"
+    "-DModule_SimpleITKFilters=ON"
     "-DModule_ITKVtkGlue=ON"
     "-DModule_ITKReview=ON"
     "-DModule_MGHIO=ON"
@@ -69,7 +80,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Insight Segmentation and Registration Toolkit";
-    homepage = "https://www.itk.org/";
+    homepage = "https://www.itk.org";
     license = lib.licenses.asl20;
     maintainers = with lib.maintainers; [viric];
   };