2022-06-09 18:50:37 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, builtin-interfaces, geometry-msgs, python-cmake-module, rclpy, rpyutils, tf2 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-tf2-py";
|
2025-01-24 13:19:18 +00:00
|
|
|
version = "0.25.12-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-01-24 13:19:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/humble/tf2_py/0.25.12-1.tar.gz";
|
|
|
|
name = "0.25.12-1.tar.gz";
|
|
|
|
sha256 = "3a4caaf6bd0a50a0c835768bf0ff29c44f2fa940bc01e7517e823876aea84fa3";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake python-cmake-module ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rclpy rpyutils tf2 ];
|
|
|
|
nativeBuildInputs = [ ament-cmake python-cmake-module ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The tf2_py package";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|