2024-02-02 13:15:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-02-02 13:15:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-05-16 13:35:43 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, data-tamer-msgs, gtest-vendor, mcap-vendor, rclcpp, rclcpp-lifecycle }:
|
2024-02-02 13:15:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-data-tamer-cpp";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "1.0.2-r1";
|
2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/data_tamer-release/archive/release/rolling/data_tamer_cpp/1.0.2-1.tar.gz";
|
|
|
|
name = "1.0.2-1.tar.gz";
|
|
|
|
sha256 = "32ec97c1109b2f993421b8eacd1d3277719231e0188542fffaa309abf9b6ee63";
|
2024-02-02 13:15:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2025-05-16 13:35:43 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake-gtest data-tamer-msgs gtest-vendor mcap-vendor rclcpp rclcpp-lifecycle ];
|
2024-02-02 13:15:52 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "DataTamer data logging library";
|
2024-02-02 13:15:52 +00:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|