2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, console-bridge, console-bridge-vendor, geometry-msgs, rcutils }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-tf2";
|
2021-04-19 01:10:27 +00:00
|
|
|
version = "0.13.10-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-19 01:10:27 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/foxy/tf2/0.13.10-1.tar.gz";
|
|
|
|
name = "0.13.10-1.tar.gz";
|
|
|
|
sha256 = "f1914c963cd4a14f833824d17bd44f120bbc0d216b69d51a4ce18a1b01b5d945";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
|
|
propagatedBuildInputs = [ console-bridge console-bridge-vendor geometry-msgs rcutils ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|