innoextract: pin to boost188 to fix the build

Without the chnage the build fails on `staging` as:

    Could not find a package configuration file provided by "boost_system"
This commit is contained in:
Sergei Trofimovich
2026-02-01 13:09:46 +00:00
parent d853cf2a84
commit 9ff9db4fed
+4 -2
View File
@@ -4,7 +4,7 @@
fetchFromGitHub,
cmake,
makeWrapper,
boost,
boost188,
xz,
libiconv,
withGog ? false,
@@ -25,7 +25,9 @@ stdenv.mkDerivation {
buildInputs = [
xz
boost
# pin to oplder boost188 as boost189
# fails to find cmake bits: https://github.com/dscharrer/innoextract/pull/199
boost188
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];