2019-09-04 17:11:04 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, console-bridge, console-bridge-vendor, geometry-msgs }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tf2";
|
2019-12-10 14:03:58 -05:00
|
|
|
version = "0.11.6-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-10 14:03:58 -05:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/dashing/tf2/0.11.6-1.tar.gz";
|
|
|
|
name = "0.11.6-1.tar.gz";
|
|
|
|
sha256 = "65289ea9141b430de6654ee02758ce31ffdfa4c57f875ce27acb3e3fcbfc75c4";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ console-bridge console-bridge-vendor geometry-msgs ];
|
2019-09-04 17:11:04 -04:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|