Unverified Commit 01e91702 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

colobot: fix build with boost 1.89 (#504833)

parents 376606ee 8df95501
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -47,6 +47,12 @@ stdenv.mkDerivation (finalAttrs: {
    })
  ];

  postPatch = ''
    substituteInPlace CMakeLists.txt \
      --replace-fail 'find_package(Boost COMPONENTS system filesystem regex REQUIRED)' \
                     'find_package(Boost COMPONENTS filesystem regex REQUIRED)'
  '';

  nativeBuildInputs = [
    cmake
    xmlstarlet