tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tilemaker: fix build with Boost 1.86+
FliegendeWurst
11 months ago
37667218
4534205b
+9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ti
tilemaker
package.nix
+9
pkgs/by-name/ti/tilemaker/package.nix
···
3
3
stdenv,
4
4
fetchFromGitHub,
5
5
buildPackages,
6
6
+
fetchpatch,
6
7
cmake,
7
8
installShellFiles,
8
9
boost,
···
25
26
rev = "v${finalAttrs.version}";
26
27
hash = "sha256-rB5oP03yaIzklwkGsIeS9ELbHOY9AObwjRrK9HBQFI4=";
27
28
};
29
29
+
30
30
+
patches = [
31
31
+
# fixes for Boost 1.86
32
32
+
(fetchpatch {
33
33
+
url = "https://github.com/systemed/tilemaker/commit/6509f0cf50943a90b36b5c6802118b72124b1e7a.patch";
34
34
+
hash = "sha256-C4aCUGTTUtY24oARihMnljjRbw80xRdMUyvu/b1Nsdw=";
35
35
+
})
36
36
+
];
28
37
29
38
postPatch = ''
30
39
substituteInPlace src/options_parser.cpp \