Unverified Commit d39c0bb6 authored by Vladimír Čunát's avatar Vladimír Čunát Committed by GitHub
Browse files

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

parents f9852d0a ba164214
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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;
  };
}