mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 03:04:49 +03:00

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
24 lines
910 B
Nix
24 lines
910 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, geometry-msgs, python3Packages, rclpy, sensor-msgs, std-msgs, tf2-msgs, tf2-py }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-tf2-ros-py";
|
|
version = "0.36.11-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/jazzy/tf2_ros_py/0.36.11-1.tar.gz";
|
|
name = "0.36.11-1.tar.gz";
|
|
sha256 = "e7eae6f00586efad51db016da2094a4db42626b190218cb05215e29a2c8f0313";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ python3Packages.pytest sensor-msgs ];
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rclpy sensor-msgs std-msgs tf2-msgs tf2-py ];
|
|
|
|
meta = {
|
|
description = "This package contains the ROS Python bindings for the tf2 library";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|