Unverified Commit 6d4829f0 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

arc_unpacker: fix build with boost 1.89 (#500944)

parents f0fd79db be02859e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -41,6 +41,11 @@ stdenv.mkDerivation {
    substituteInPlace CMakeLists.txt --replace-fail \
      'cmake_minimum_required(VERSION 2.8.8)' \
      'cmake_minimum_required(VERSION 3.10)'

    # boost 1.89 no longer provides boost_system as a separate CMake component
    substituteInPlace CMakeLists.txt --replace-fail \
      'find_package(Boost COMPONENTS filesystem system REQUIRED)' \
      'find_package(Boost COMPONENTS filesystem REQUIRED)'
  '';

  nativeBuildInputs = [