Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
101 lines
3.3 KiB
Nix
101 lines
3.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
boost,
|
|
cmake,
|
|
libgeotiff,
|
|
libtiff,
|
|
laszip_2,
|
|
zlib,
|
|
fixDarwinDylibNames,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libLAS";
|
|
version = "1.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.osgeo.org/liblas/libLAS-${finalAttrs.version}.tar.bz2";
|
|
sha256 = "0xjfxb3ydvr2258ji3spzyf81g9caap19ql2pk91wiivqsc4mnws";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "aarch64-darwin.patch";
|
|
url = "https://github.com/libLAS/libLAS/commit/ded463732db1f9baf461be6f3fe5b8bb683c41cd.patch";
|
|
sha256 = "sha256-aWMpazeefDHE9OzuLR3FJ8+oXeGhEsk1igEm6j2DUnw=";
|
|
})
|
|
(fetchpatch {
|
|
name = "fix-build-with-boost-1.73-1.patch";
|
|
url = "https://github.com/libLAS/libLAS/commit/af431abce95076b59f4eb7c6ef0930ca57c8a063.patch";
|
|
hash = "sha256-2lr028t5hq3oOLZFXnvIJXCUsoVHbG/Mus93OZvi5ZU=";
|
|
})
|
|
(fetchpatch {
|
|
name = "fix-build-with-boost-1.73-2.patch";
|
|
url = "https://github.com/libLAS/libLAS/commit/0d3b8d75f371a6b7c605bbe5293091cb64a7e2d3.patch";
|
|
hash = "sha256-gtNIazR+l1h+Xef+4qQc7EVi+Nlht3F8CrwkINothtA=";
|
|
})
|
|
# remove on update. fix compile error in apps/las2col.c
|
|
# https://github.com/libLAS/libLAS/pull/151
|
|
(fetchpatch {
|
|
name = "fflush-x2-is-not-an-fsync.patch";
|
|
url = "https://github.com/libLAS/libLAS/commit/e789d43df4500da0c12d2f6d3ac1d031ed835493.patch";
|
|
hash = "sha256-0zI0NvOt9C5BPrfAbgU1N1kj3rZFB7rf0KRj7yemyWI=";
|
|
})
|
|
(fetchpatch {
|
|
name = "set-macos-rpath-to-off-explicitly.patch";
|
|
url = "https://github.com/libLAS/libLAS/commit/ce9bc0da9e5d1eb8527259854aa826df062ed18e.patch";
|
|
hash = "sha256-Rse0p8bNgORNaw/EBbu0i2/iVmikFyeloJL8YkYarn0=";
|
|
})
|
|
(fetchpatch {
|
|
name = "fix-findLASZIP.patch";
|
|
url = "https://github.com/libLAS/libLAS/commit/be77a75f475ec8d59c0dae1c3c896289bcb5a287.patch";
|
|
hash = "sha256-5XDexk3IW7s2/G27GXkWp7cw1WZyQLMk/lTpfOM6PM0=";
|
|
})
|
|
];
|
|
|
|
# Disable setting of C++98 standard which was dropped in boost 1.84.0
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace-fail 'set(CMAKE_CXX_FLAGS "''${CMAKE_CXX_FLAGS} -std=c++98 -ansi")' '#'
|
|
''
|
|
# Upstream libLAS still uses cmake_minimum_required(VERSION 2.8.11).
|
|
# This is not compatible with CMake 4, because support for CMake < 3.5 has been removed.
|
|
+ ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace-fail 'cmake_minimum_required(VERSION 2.6.0)' 'cmake_minimum_required(VERSION 3.10)'
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
|
|
|
buildInputs = [
|
|
boost
|
|
libgeotiff
|
|
libtiff
|
|
# libLAS is currently not compatible with LASzip 3,
|
|
# see https://github.com/libLAS/libLAS/issues/144.
|
|
laszip_2
|
|
zlib
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "WITH_LASZIP" true)
|
|
(lib.cmakeFeature "CMAKE_EXE_LINKER_FLAGS" "-pthread")
|
|
];
|
|
|
|
postFixup = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
install_name_tool -change "@rpath/liblas.3.dylib" "$out/lib/liblas.3.dylib" $out/lib/liblas_c.dylib
|
|
'';
|
|
|
|
meta = {
|
|
description = "LAS 1.0/1.1/1.2 ASPRS LiDAR data translation toolset";
|
|
homepage = "https://liblas.org";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ michelk ];
|
|
teams = with lib.teams; [ geospatial ];
|
|
};
|
|
})
|