mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
937 B
Nix
24 lines
937 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, geometry-msgs, nav-msgs, python3Packages, rclpy, tf-transformations, tf2-ros }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-nav2-loopback-sim";
|
|
version = "1.3.5-r1";
|
|
|
|
src = fetchurl {
|
|
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";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
|
propagatedBuildInputs = [ geometry-msgs nav-msgs rclpy tf-transformations tf2-ros ];
|
|
|
|
meta = {
|
|
description = "A loopback simulator to replace physics simulation";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|