2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-cppcheck, ament-cmake-cpplint, ament-cmake-google-benchmark, ament-cmake-gtest, ament-cmake-lint-cmake, ament-cmake-ros, ament-cmake-uncrustify, ament-cmake-xmllint, builtin-interfaces, geometry-msgs, rcutils, rosidl-runtime-cpp }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-tf2";
|
2025-01-03 13:42:37 +00:00
|
|
|
version = "0.36.7-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-01-03 13:42:37 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/jazzy/tf2/0.36.7-1.tar.gz";
|
|
|
|
name = "0.36.7-1.tar.gz";
|
|
|
|
sha256 = "cc126f67f68cbd47d61f6202951c60f505b43193e912ef244e0c089043e461a0";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-ros ];
|
2024-07-26 13:34:25 +00:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-google-benchmark ament-cmake-gtest ament-cmake-lint-cmake ament-cmake-uncrustify ament-cmake-xmllint ];
|
2024-05-24 14:00:52 +00:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rcutils rosidl-runtime-cpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "tf2 is the second generation of the transform library, which lets
|
|
|
|
the user keep track of multiple coordinate frames over time. tf2
|
|
|
|
maintains the relationship between coordinate frames in a tree
|
|
|
|
structure buffered in time, and lets the user transform points,
|
|
|
|
vectors, etc between any two coordinate frames at any desired
|
|
|
|
point in time.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|