nix-ros-overlay/distros/rolling/data-tamer-cpp/default.nix

26 lines
898 B
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, data-tamer-msgs, gtest-vendor, mcap-vendor, rclcpp, rclcpp-lifecycle }:
buildRosPackage {
pname = "ros-rolling-data-tamer-cpp";
version = "1.0.2-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ ament-cmake-gtest data-tamer-msgs gtest-vendor mcap-vendor rclcpp rclcpp-lifecycle ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "DataTamer data logging library";
license = with lib.licenses; [ mit ];
};
}