tora: fix build with cmake4, mark as broken (#455510)

This commit is contained in:
Vladimír Čunát
2025-11-08 09:34:23 +00:00
committed by GitHub
+7
View File
@@ -74,11 +74,18 @@ mkDerivation {
''--prefix PATH : ${lib.getBin graphviz}/bin''
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "CMAKE_MINIMUM_REQUIRED(VERSION 3.1 FATAL_ERROR)" "cmake_minimum_required(VERSION 3.10)"
'';
meta = with lib; {
description = "Tora SQL tool";
mainProgram = "tora";
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
license = licenses.asl20;
# fails to build on hydra since 2024
broken = true;
};
}