fileshelter: fix build with boost 1.89
Boost 1.89 removed the boost_system stub library. Remove the `system` component from the find_package call.
This commit is contained in:
@@ -24,6 +24,11 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
postPatch = ''
|
||||
sed -i '1i #include <algorithm>' src/fileshelter/ui/ShareCreateFormView.cpp
|
||||
|
||||
# boost 1.89 removed the boost_system stub library
|
||||
substituteInPlace CMakeLists.txt --replace-fail \
|
||||
'find_package(Boost REQUIRED COMPONENTS system program_options)' \
|
||||
'find_package(Boost REQUIRED COMPONENTS program_options)'
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
Reference in New Issue
Block a user