tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pdal: fix build on darwin
Weijia Wang
3 years ago
fcf02643
9a8d7bbf
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
pdal
default.nix
+4
-2
pkgs/development/libraries/pdal/default.nix
···
8
8
, gdal
9
9
, hdf5-cpp
10
10
, LASzip
11
11
+
, enableE57 ? lib.meta.availableOn stdenv.hostPlatform libe57format
11
12
, libe57format
12
13
, libgeotiff
13
14
, libxml2
···
40
41
gdal
41
42
hdf5-cpp
42
43
LASzip
43
43
-
libe57format
44
44
libgeotiff
45
45
libxml2
46
46
postgresql
···
48
48
xercesc
49
49
zlib
50
50
zstd
51
51
+
] ++ lib.optionals enableE57 [
52
52
+
libe57format
51
53
];
52
54
53
55
cmakeFlags = [
54
54
-
"-DBUILD_PLUGIN_E57=ON"
56
56
+
"-DBUILD_PLUGIN_E57=${if enableE57 then "ON" else "OFF"}"
55
57
"-DBUILD_PLUGIN_HDF=ON"
56
58
"-DBUILD_PLUGIN_PGPOINTCLOUD=ON"
57
59
"-DBUILD_PLUGIN_TILEDB=ON"