1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/crystal/navigation2/default.nix
2019-09-05 22:48:11 -04:00

24 lines
1.4 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, nav2-tasks, nav2-voxel-grid, nav2-dwb-controller, nav2-motion-primitives, nav2-bt-navigator, nav2-amcl, nav2-map-server, ament-cmake-pytest, nav2-navfn-planner, ament-cmake-gtest, launch, nav2-util, nav2-dynamic-params, nav2-mission-executor, nav2-world-model, nav2-robot, ament-lint-common, launch-testing, nav2-msgs, nav2-costmap-2d, ament-lint-auto, nav2-simple-navigator }:
buildRosPackage {
pname = "ros-crystal-navigation2";
version = "0.1.7";
src = fetchurl {
url = https://github.com/SteveMacenski/navigation2-release/archive/release/crystal/navigation2/0.1.7-0.tar.gz;
sha256 = "a64c995199a6691b261ad3789606d0fdaf56f46c582a87ea488bee4c4228d7c0";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-pytest ament-lint-common launch-testing ament-cmake-gtest launch ament-lint-auto ];
propagatedBuildInputs = [ nav2-map-server nav2-dynamic-params nav2-mission-executor nav2-tasks nav2-voxel-grid nav2-navfn-planner nav2-msgs nav2-world-model nav2-util nav2-dwb-controller nav2-motion-primitives nav2-costmap-2d nav2-simple-navigator nav2-robot nav2-bt-navigator nav2-amcl ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''ROS2 Navigation Stack'';
license = with lib.licenses; [ asl20 ];
};
}