2024-07-26 13:34:25 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-07-26 13:34:25 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-08-30 13:28:23 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, boost, c-blosc, git, openvdb, tbb_2021_11, zlib }:
|
2024-07-26 13:34:25 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-openvdb-vendor";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.5.4-r1";
|
2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/SteveMacenski/spatio_temporal_voxel_layer-release/archive/release/jazzy/openvdb_vendor/2.5.4-1.tar.gz";
|
|
|
|
name = "2.5.4-1.tar.gz";
|
|
|
|
sha256 = "1f34babbbb76bb02f5cf718036b18c42e9338529b8f0d832b9e87366795dde5a";
|
2024-07-26 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-vendor-package git ];
|
2024-08-30 13:28:23 +00:00
|
|
|
propagatedBuildInputs = [ boost c-blosc openvdb tbb_2021_11 zlib ];
|
2024-07-26 13:34:25 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package git ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Wrapper around OpenVDB, if not found on the system, will compile from source";
|
|
|
|
license = with lib.licenses; [ "LGPL-2.1-only" "MPL-2.0-license" ];
|
|
|
|
};
|
|
|
|
}
|