2022-06-09 18:50:37 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, action-msgs, ament-copyright, ament-flake8, ament-pep257, geometry-msgs, lifecycle-msgs, nav2-msgs, pythonPackages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-nav2-simple-commander";
|
2023-07-07 13:21:03 +00:00
|
|
|
version = "1.1.8-r2";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-07 13:21:03 +00:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_simple_commander/1.1.8-2.tar.gz";
|
|
|
|
name = "1.1.8-2.tar.gz";
|
|
|
|
sha256 = "27bf09aab1ceb475bdaa5bff9465b49889e5def79464a6cb676891c3fee7477d";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ action-msgs geometry-msgs lifecycle-msgs nav2-msgs rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''An importable library for writing mobile robot applications in python3'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|