compactor: fix build by pinning older boost

This commit is contained in:
Sandro Jäckel
2025-03-12 16:05:08 +01:00
parent d113ce49b8
commit 83fdee8d66
@@ -5,7 +5,7 @@
asciidoctor,
autoreconfHook,
pkg-config,
boost,
boost186,
libctemplate,
libmaxminddb,
libpcap,
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
pkg-config
];
buildInputs = [
boost
boost186
libctemplate
libmaxminddb
libpcap
@@ -69,8 +69,8 @@ stdenv.mkDerivation rec {
'';
configureFlags = [
"--with-boost-libdir=${boost.out}/lib"
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost186.out}/lib"
"--with-boost=${boost186.dev}"
];
enableParallelBuilding = true;