python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libLAS / default.nix
blob5d0f2ff5684643991795220b59c63377729e4610
1 { lib, stdenv, fetchurl, boost, cmake, gdal, libgeotiff, libtiff, LASzip2, fixDarwinDylibNames }:
3 stdenv.mkDerivation rec {
4   pname = "libLAS";
5   version = "1.8.1";
7   src = fetchurl {
8     url = "https://download.osgeo.org/liblas/libLAS-${version}.tar.bz2";
9     sha256 = "0xjfxb3ydvr2258ji3spzyf81g9caap19ql2pk91wiivqsc4mnws";
10   };
12   nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
13   buildInputs = [ boost gdal libgeotiff libtiff LASzip2 ];
15   cmakeFlags = [
16     "-DGDAL_CONFIG=${gdal}/bin/gdal-config"
17     "-DWITH_LASZIP=ON"
18     # libLAS is currently not compatible with LASzip 3,
19     # see https://github.com/libLAS/libLAS/issues/144.
20     "-DLASZIP_INCLUDE_DIR=${LASzip2}/include"
21     "-DCMAKE_EXE_LINKER_FLAGS=-pthread"
22   ];
24   postFixup = lib.optionalString stdenv.isDarwin ''
25     install_name_tool -change "@rpath/liblas.3.dylib" "$out/lib/liblas.3.dylib" $out/lib/liblas_c.dylib
26   '';
28   meta = {
29     description = "LAS 1.0/1.1/1.2 ASPRS LiDAR data translation toolset";
30     homepage = "https://liblas.org";
31     license = lib.licenses.bsd3;
32     platforms = lib.platforms.unix;
33     maintainers = [ lib.maintainers.michelk ];
34   };