2021-09-24 13:26:09 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2021-09-24 13:26:09 +00: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-galactic-nav2-simple-commander";
|
2022-05-20 13:47:27 +00:00
|
|
|
version = "1.0.11-r1";
|
2021-09-24 13:26:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-05-20 13:47:27 +00:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/galactic/nav2_simple_commander/1.0.11-1.tar.gz";
|
|
|
|
name = "1.0.11-1.tar.gz";
|
|
|
|
sha256 = "fbddc7ed655af8fc30e5defb0f25a6499d921577f19ececaefa3956c545a7ae3";
|
2021-09-24 13:26:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
2022-05-07 14:07:34 -04:00
|
|
|
propagatedBuildInputs = [ action-msgs geometry-msgs lifecycle-msgs nav2-msgs rclpy ];
|
2021-09-24 13:26:09 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''An importable library for writing mobile robot applications in python3'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|