mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
870 B
Nix
25 lines
870 B
Nix
![]() |
|
||
|
# Copyright 2022 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, geometry-msgs, pythonPackages, rclpy, sensor-msgs, std-msgs, tf2-msgs, tf2-py }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-humble-tf2-ros-py";
|
||
|
version = "0.25.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/humble/tf2_ros_py/0.25.0-2.tar.gz";
|
||
|
name = "0.25.0-2.tar.gz";
|
||
|
sha256 = "b26c75164269d8dece6629690176f74344badf41adfce34cfa7ff7713dde9ae5";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ pythonPackages.pytest sensor-msgs ];
|
||
|
propagatedBuildInputs = [ 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 ];
|
||
|
};
|
||
|
}
|