tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
laszip_2: fix build with cmake v4
qbisi
4 months ago
224b861f
9cf0dfd9
+6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
la
laszip_2
package.nix
+6
pkgs/by-name/la/laszip_2/package.nix
···
16
hash = "sha256-TXzse4oLjNX5R2xDR721iV+gW/rP5z3Zciv4OgxfeqA=";
17
};
18
0
0
0
0
0
0
19
nativeBuildInputs = [ cmake ];
20
21
meta = {
···
16
hash = "sha256-TXzse4oLjNX5R2xDR721iV+gW/rP5z3Zciv4OgxfeqA=";
17
};
18
19
+
# fix build with cmake v4
20
+
postPatch = ''
21
+
substituteInPlace CMakeLists.txt \
22
+
--replace-fail 'cmake_minimum_required(VERSION 2.6.0)' 'cmake_minimum_required(VERSION 3.10)'
23
+
'';
24
+
25
nativeBuildInputs = [ cmake ];
26
27
meta = {