mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
851 B
Nix
25 lines
851 B
Nix
![]() |
|
||
|
# Copyright 2022 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, launch-ros, pythonPackages, tf2-ros-py }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-humble-examples-tf2-py";
|
||
|
version = "0.25.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/humble/examples_tf2_py/0.25.0-2.tar.gz";
|
||
|
name = "0.25.0-2.tar.gz";
|
||
|
sha256 = "1e79b9813a8915eb6044de10653ff4f2c6343253e0f2fe309f78e1a501b5a3be";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
||
|
propagatedBuildInputs = [ launch-ros tf2-ros-py ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Has examples of using the tf2 Python API.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|