1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/dwb-plugins/default.nix

28 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, ament-cmake, pluginlib, ament-lint-common, launch-testing, ament-cmake-gtest, launch, nav2-util, nav2-common, nav-2d-utils, rclcpp, angles, ament-lint-auto, dwb-core, nav-2d-msgs }:
buildRosPackage {
pname = "ros-dashing-dwb-plugins";
version = "0.2.4-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/dashing/dwb_plugins/0.2.4-1.tar.gz";
name = "0.2.4-1.tar.gz";
sha256 = "db5cb563d20cf96a7b8521eba2f4e6e328da2160d1a3f3b1ee3952a20e7b9e1f";
};
buildType = "ament_cmake";
buildInputs = [ pluginlib nav2-util nav2-common nav-2d-utils rclcpp angles dwb-core nav-2d-msgs ];
checkInputs = [ ament-cmake-pytest ament-lint-common launch-testing ament-cmake-gtest launch ament-lint-auto ];
propagatedBuildInputs = [ pluginlib nav2-util nav-2d-utils rclcpp angles dwb-core nav-2d-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Standard implementations of the GoalChecker
and TrajectoryGenerators for dwb_core'';
license = with lib.licenses; [ bsdOriginal ];
};
}