Skip to content

Commit

Permalink
innoextract: fix the build against boost-1.86 (#367699)
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptaron authored Dec 24, 2024
2 parents 52220e8 + 03db75c commit f1f275a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pkgs/by-name/in/innoextract/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
stdenv,
fetchurl,
fetchpatch,
cmake,
makeWrapper,
boost,
Expand All @@ -20,6 +21,16 @@ stdenv.mkDerivation rec {
sha256 = "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33";
};

patches = [
# Fix boost-1.86 build:
# https://github.com/dscharrer/innoextract/pull/169
(fetchpatch {
name = "boost-1.86.patch";
url = "https://github.com/dscharrer/innoextract/commit/264c2fe6b84f90f6290c670e5f676660ec7b2387.patch";
hash = "sha256-QYwrqLXC7FE4oYi6G1erpX/RUUtS5zNBv7/fO7AdZQg=";
})
];

buildInputs = [
xz
boost
Expand Down

0 comments on commit f1f275a

Please sign in to comment.