2023-05-02 16:50:22 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-05-02 16:50:22 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-08-16 13:54:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, as2-core, as2-msgs, geometry-msgs, librealsense2, nav-msgs, rclcpp, sensor-msgs, std-msgs, std-srvs, tf2, tf2-ros }:
|
2023-05-02 16:50:22 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-as2-realsense-interface";
|
2024-08-30 13:28:23 +00:00
|
|
|
version = "1.1.2-r2";
|
2023-05-02 16:50:22 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-30 13:28:23 +00:00
|
|
|
url = "https://github.com/ros2-gbp/aerostack2-release/archive/release/humble/as2_realsense_interface/1.1.2-2.tar.gz";
|
|
|
|
name = "1.1.2-2.tar.gz";
|
|
|
|
sha256 = "ac7fd77fc0993e8ceaaabe634395bd04fdebfa0f48b1a0a90ee2ac0a7bc6f57f";
|
2023-05-02 16:50:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-08-16 13:54:37 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
2023-08-25 13:31:58 +00:00
|
|
|
propagatedBuildInputs = [ as2-core as2-msgs geometry-msgs librealsense2 nav-msgs rclcpp sensor-msgs std-msgs std-srvs tf2 tf2-ros ];
|
2023-05-02 16:50:22 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Intel Realsense cameras driver";
|
2023-05-02 16:50:22 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|