From 9ff9db4fed9f8642aeea66293754a95828ac75ca Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 1 Feb 2026 13:09:07 +0000 Subject: [PATCH] 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" --- pkgs/by-name/in/innoextract/package.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/in/innoextract/package.nix b/pkgs/by-name/in/innoextract/package.nix index 7e8db93d1ad0..365a1745966a 100644 --- a/pkgs/by-name/in/innoextract/package.nix +++ b/pkgs/by-name/in/innoextract/package.nix @@ -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 ];