2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, cmake, curl, cv-bridge, glog, pcl, xmlrpc_c }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ifm3d-core";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.18.0-r9";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ifm3d-release/archive/release/rolling/ifm3d_core/0.18.0-9.tar.gz";
|
|
|
|
name = "0.18.0-9.tar.gz";
|
|
|
|
sha256 = "da384f3a6f7b93d678ba3acb516cbdf6b51b7e0afc2d01a442e5b455a1fa2c19";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ boost cmake ];
|
|
|
|
propagatedBuildInputs = [ curl cv-bridge glog pcl xmlrpc_c ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Library and Utilities for working with ifm pmd-based 3D ToF Cameras";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|