1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/examples-tf2-py/default.nix

24 lines
916 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, geometry-msgs, launch-ros, python3Packages, rclpy, sensor-msgs, tf2-ros-py }:
buildRosPackage {
pname = "ros-jazzy-examples-tf2-py";
version = "0.36.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/jazzy/examples_tf2_py/0.36.8-1.tar.gz";
name = "0.36.8-1.tar.gz";
sha256 = "1b0a9bd731ce57af87a000ab55e10a49c9e620fd5246b0f07528de6f11f9090f";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
propagatedBuildInputs = [ geometry-msgs launch-ros rclpy sensor-msgs tf2-ros-py ];
meta = {
description = "Has examples of using the tf2 Python API.";
license = with lib.licenses; [ asl20 ];
};
}