2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05: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-rolling-tf2-py";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "0.32.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/rolling/tf2_py/0.32.0-1.tar.gz";
|
|
|
|
name = "0.32.0-1.tar.gz";
|
|
|
|
sha256 = "a5f678f7fe88d92803d319c1c09969111fd00425a90cb87dd2682bb18e5f78f2";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake python-cmake-module ];
|
|
|
|
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 = {
|
|
|
|
description = ''The tf2_py package'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|