nixpkgs/pkgs/development/libraries/pdal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

86 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-06-25 19:02:01 +00:00
, fetchFromGitHub
, fetchpatch
, cmake
, pkg-config
2020-10-23 00:38:11 +00:00
, openscenegraph
2020-06-25 19:02:01 +00:00
, curl
, gdal
, hdf5-cpp
, LASzip
2022-10-12 19:02:43 +00:00
, enableE57 ? lib.meta.availableOn stdenv.hostPlatform libe57format
2020-06-25 19:02:01 +00:00
, libe57format
, libgeotiff
2022-12-12 10:22:37 +00:00
, libtiff
2020-06-25 19:02:01 +00:00
, libxml2
, postgresql
, tiledb
, xercesc
, zlib
, zstd
}:
stdenv.mkDerivation rec {
pname = "pdal";
2022-12-12 10:22:37 +00:00
version = "2.4.3";
2020-06-25 19:02:01 +00:00
src = fetchFromGitHub {
owner = "PDAL";
repo = "PDAL";
rev = version;
2022-12-12 10:22:37 +00:00
sha256 = "sha256-9TQlhuGSTnHsTlJos9Hwnyl1CxI0tXLZdqsaGdp6WIE=";
2020-06-25 19:02:01 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
2020-10-23 00:38:11 +00:00
openscenegraph
2020-06-25 19:02:01 +00:00
curl
gdal
hdf5-cpp
LASzip
libgeotiff
2022-12-12 10:22:37 +00:00
libtiff
2020-06-25 19:02:01 +00:00
libxml2
postgresql
tiledb
xercesc
zlib
zstd
2022-10-12 19:02:43 +00:00
] ++ lib.optionals enableE57 [
libe57format
2020-06-25 19:02:01 +00:00
];
cmakeFlags = [
2022-10-12 19:02:43 +00:00
"-DBUILD_PLUGIN_E57=${if enableE57 then "ON" else "OFF"}"
2020-06-25 19:02:01 +00:00
"-DBUILD_PLUGIN_HDF=ON"
"-DBUILD_PLUGIN_PGPOINTCLOUD=ON"
"-DBUILD_PLUGIN_TILEDB=ON"
# Plugins can probably not be made work easily:
"-DBUILD_PLUGIN_CPD=OFF"
"-DBUILD_PLUGIN_FBX=OFF" # Autodesk FBX SDK is gratis+proprietary; not packaged in nixpkgs
"-DBUILD_PLUGIN_GEOWAVE=OFF"
"-DBUILD_PLUGIN_I3S=OFF"
"-DBUILD_PLUGIN_ICEBRIDGE=OFF"
"-DBUILD_PLUGIN_MATLAB=OFF"
"-DBUILD_PLUGIN_MBIO=OFF"
"-DBUILD_PLUGIN_MRSID=OFF"
"-DBUILD_PLUGIN_NITF=OFF"
"-DBUILD_PLUGIN_OCI=OFF"
"-DBUILD_PLUGIN_RDBLIB=OFF" # Riegl rdblib is proprietary; not packaged in nixpkgs
"-DBUILD_PLUGIN_RIVLIB=OFF"
];
meta = with lib; {
description = "PDAL is Point Data Abstraction Library. GDAL for point cloud data";
2020-06-25 19:02:01 +00:00
homepage = "https://pdal.io";
license = licenses.bsd3;
maintainers = with maintainers; [ nh2 ];
platforms = platforms.all;
};
}