added additional cmake flag for itk in build inputs
This commit is contained in:
parent
2a178c8dc5
commit
8a1c05afa3
1 changed files with 5 additions and 1 deletions
|
|
@ -23,7 +23,11 @@ stdenv.mkDerivation {
|
||||||
qt6.wrapQtAppsHook
|
qt6.wrapQtAppsHook
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
itk
|
(itk.overrideAttrs (
|
||||||
|
finalAttrs: previousAttrs: {
|
||||||
|
cmakeFlags = previousAttrs.cmakeFlags ++ [ "-DModule_MorphologicalContourInterpolation=ON" ];
|
||||||
|
}
|
||||||
|
))
|
||||||
vtk
|
vtk
|
||||||
qt6.qtbase
|
qt6.qtbase
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue