2024-08-30 13:28:23 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-08-30 13:28:23 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, geometry-msgs, nav-msgs, python3Packages, rclpy, tf-transformations, tf2-ros }:
|
2024-08-30 13:28:23 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-nav2-loopback-sim";
|
2025-02-14 13:45:14 +00:00
|
|
|
version = "1.3.5-r1";
|
2024-08-30 13:28:23 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-14 13:45:14 +00:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/jazzy/nav2_loopback_sim/1.3.5-1.tar.gz";
|
|
|
|
name = "1.3.5-1.tar.gz";
|
|
|
|
sha256 = "77ae40b27be1d8de8fa18123c2c747b5bce0a6870c7d38199af081e25195d001";
|
2024-08-30 13:28:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
2024-11-15 13:25:01 +00:00
|
|
|
propagatedBuildInputs = [ geometry-msgs nav-msgs rclpy tf-transformations tf2-ros ];
|
2024-08-30 13:28:23 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A loopback simulator to replace physics simulation";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|