tilemaker: fix build with Boost 1.86+ (#394450)

authored by

Nikolay Korotkiy and committed by
GitHub
f706ef4c d889b908

+9
+9
pkgs/by-name/ti/tilemaker/package.nix
··· 3 stdenv, 4 fetchFromGitHub, 5 buildPackages, 6 cmake, 7 installShellFiles, 8 boost, ··· 25 rev = "v${finalAttrs.version}"; 26 hash = "sha256-rB5oP03yaIzklwkGsIeS9ELbHOY9AObwjRrK9HBQFI4="; 27 }; 28 29 postPatch = '' 30 substituteInPlace src/options_parser.cpp \
··· 3 stdenv, 4 fetchFromGitHub, 5 buildPackages, 6 + fetchpatch, 7 cmake, 8 installShellFiles, 9 boost, ··· 26 rev = "v${finalAttrs.version}"; 27 hash = "sha256-rB5oP03yaIzklwkGsIeS9ELbHOY9AObwjRrK9HBQFI4="; 28 }; 29 + 30 + patches = [ 31 + # fixes for Boost 1.86 32 + (fetchpatch { 33 + url = "https://github.com/systemed/tilemaker/commit/6509f0cf50943a90b36b5c6802118b72124b1e7a.patch"; 34 + hash = "sha256-C4aCUGTTUtY24oARihMnljjRbw80xRdMUyvu/b1Nsdw="; 35 + }) 36 + ]; 37 38 postPatch = '' 39 substituteInPlace src/options_parser.cpp \