mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-18 08:00:17 +03:00
25 lines
981 B
Nix
25 lines
981 B
Nix
![]() |
|
||
|
# Copyright 2024 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, pythonPackages, rclpy, tf-transformations, tf2-ros }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-nav2-loopback-sim";
|
||
|
version = "1.3.2-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/jazzy/nav2_loopback_sim/1.3.2-1.tar.gz";
|
||
|
name = "1.3.2-1.tar.gz";
|
||
|
sha256 = "51dda58fb52f3dfbc28cc03093fe885dd25918aa00784893cbd8ee4be10601bb";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
||
|
propagatedBuildInputs = [ geometry-msgs nav-msgs python3Packages.transforms3d rclpy tf-transformations tf2-ros ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A loopback simulator to replace physics simulation";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|