2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-11-29 13:44:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, builtin-interfaces, geometry-msgs, python3, rclpy, rpyutils, tf2 }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-tf2-py";
|
2024-11-29 13:44:25 +00:00
|
|
|
version = "0.39.3-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-29 13:44:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/rolling/tf2_py/0.39.3-1.tar.gz";
|
|
|
|
name = "0.39.3-1.tar.gz";
|
|
|
|
sha256 = "20c2f4dec33e550f5bbf4803c3cde5498d636de7d96099bd9eba0fc05cbf3eb1";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-11-29 13:44:25 +00:00
|
|
|
buildInputs = [ ament-cmake python3 ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rclpy rpyutils tf2 ];
|
2024-11-08 14:09:31 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The tf2_py package";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|