We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52220e8 + 03db75c commit f1f275aCopy full SHA for f1f275a
pkgs/by-name/in/innoextract/package.nix
@@ -2,6 +2,7 @@
2
lib,
3
stdenv,
4
fetchurl,
5
+ fetchpatch,
6
cmake,
7
makeWrapper,
8
boost,
@@ -20,6 +21,16 @@ stdenv.mkDerivation rec {
20
21
sha256 = "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33";
22
};
23
24
+ patches = [
25
+ # Fix boost-1.86 build:
26
+ # https://github.com/dscharrer/innoextract/pull/169
27
+ (fetchpatch {
28
+ name = "boost-1.86.patch";
29
+ url = "https://github.com/dscharrer/innoextract/commit/264c2fe6b84f90f6290c670e5f676660ec7b2387.patch";
30
+ hash = "sha256-QYwrqLXC7FE4oYi6G1erpX/RUUtS5zNBv7/fO7AdZQg=";
31
+ })
32
+ ];
33
+
34
buildInputs = [
35
xz
36
boost
0 commit comments