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:
Philip Taron
2026-04-06 14:08:07 -07:00
parent f88a24a0b8
commit b30abcfc54
+5
View File
@@ -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;