nix-ros-overlay/distros/rolling/examples-tf2-py/default.nix
Superflore 2435baa8ac
Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
regenerate all distros, Fri May 16 13:35:43 2025
2025-05-31 15:39:42 -04:00

24 lines
949 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, ament-xmllint, geometry-msgs, launch-ros, python3Packages, rclpy, sensor-msgs, tf2-ros-py }:
buildRosPackage {
pname = "ros-rolling-examples-tf2-py";
version = "0.42.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/rolling/examples_tf2_py/0.42.1-1.tar.gz";
name = "0.42.1-1.tar.gz";
sha256 = "4e2c49cec904062d405984dc0d771ffff720e0be3908421519527fe9dce492f9";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint 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 ];
};
}