niftyseg: fix build with cmake4, mark as broken on darwin (#458503)

This commit is contained in:
Leona Maroni
2025-11-04 17:58:09 +00:00
committed by GitHub
+9
View File
@@ -24,12 +24,21 @@ stdenv.mkDerivation rec {
zlib
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" \
--replace-fail "cmake_minimum_required(VERSION 3.0.2)" "cmake_minimum_required(VERSION 3.10)" \
--replace-fail "cmake_policy(VERSION 2.8)" "cmake_policy(VERSION 3.10)"
'';
meta = with lib; {
homepage = "http://cmictig.cs.ucl.ac.uk/research/software/software-nifty/niftyseg";
description = "Software for medical image segmentation, bias field correction, and cortical thickness calculation";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
license = licenses.bsd3;
# last successful hydra build on darwin was in 2023
broken = stdenv.hostPlatform.isDarwin;
};
}